From 04006bba353f2ac70ec4b4bab092fd44f7060cdd Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 24 Feb 2026 08:57:51 +0100 Subject: [PATCH 1/6] Pass subgraphs in fusion publish command --- .../src/CommandLine/.config/dotnet-tools.json | 11 - .../Commands/Fusion/FusionPublishCommand.cs | 21 +- .../Commands/Fusion/FusionPublishHelpers.cs | 17 +- .../FusionConfigurationPublishBeginCommand.cs | 1 + .../CommandLine/Generated/ApiClient.Client.cs | 142349 ++++++++------- .../CommandLine/src/CommandLine/README.md | 4 +- .../src/CommandLine/schema.graphql | 167 +- 7 files changed, 72486 insertions(+), 70084 deletions(-) delete mode 100644 src/Nitro/CommandLine/src/CommandLine/.config/dotnet-tools.json diff --git a/src/Nitro/CommandLine/src/CommandLine/.config/dotnet-tools.json b/src/Nitro/CommandLine/src/CommandLine/.config/dotnet-tools.json deleted file mode 100644 index 998cbcae619..00000000000 --- a/src/Nitro/CommandLine/src/CommandLine/.config/dotnet-tools.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "strawberryshake.tools": { - "version": "15.1.8", - "commands": ["dotnet-graphql"], - "rollForward": false - } - } -} diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs index e805611d209..9171447d6c8 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs @@ -119,7 +119,6 @@ private static async Task ExecuteAsync( archiveFile, console, client, - httpClientFactory, cancellationToken); } @@ -198,6 +197,7 @@ private static async Task ExecuteAsync( stageName, tag, newSourceSchemas, + sourceSchemaVersions, compositionSettings: null, console, client, @@ -205,14 +205,13 @@ private static async Task ExecuteAsync( cancellationToken); } - internal static async Task PublishFusionConfigurationAsync( + private static async Task PublishFusionConfigurationAsync( string apiId, string stageName, string tag, string archiveFilePath, IAnsiConsole console, IApiClient client, - IHttpClientFactory httpClientFactory, CancellationToken cancellationToken) { await using var archiveStream = File.Open(archiveFilePath, FileMode.Open, FileAccess.Read, FileShare.Read); @@ -237,6 +236,7 @@ await console tag, subgraphId: null, subgraphName: null, + sourceSchemaVersions: null, waitForApproval: false, context, console, @@ -288,6 +288,7 @@ await FusionPublishHelpers.UploadFusionArchiveAsync( tag, subgraphId: null, subgraphName: null, + sourceSchemaVersions: null, waitForApproval: false, statusContext: null, console, @@ -330,11 +331,12 @@ await FusionPublishHelpers.ReleaseDeploymentSlot( return ExitCodes.Success; } - internal static async Task PublishFusionConfigurationAsync( + private static async Task PublishFusionConfigurationAsync( string apiId, string stageName, string tag, Dictionary newSourceSchemas, + FusionPublishHelpers.SourceSchemaVersion[] sourceSchemaVersions, CompositionSettings? compositionSettings, IAnsiConsole console, IApiClient client, @@ -472,10 +474,9 @@ Task RequestDeploymentSlotAsync(StatusContext? statusContext) apiId, stageName, tag, - // As we could be publishing multiple source schemas, - // we do not associate this publish with a specific subgraph. subgraphId: null, subgraphName: null, + sourceSchemaVersions, waitForApproval: false, statusContext, console, @@ -534,7 +535,7 @@ async Task UploadConfigurationAsync(Stream stream, StatusContext? statusContext) } } - private static SourceSchemaVersion ParseSourceSchemaVersion(string input, string tag) + private static FusionPublishHelpers.SourceSchemaVersion ParseSourceSchemaVersion(string input, string tag) { var atIndex = input.LastIndexOf('@'); @@ -553,7 +554,7 @@ private static SourceSchemaVersion ParseSourceSchemaVersion(string input, string throw new ArgumentException("The source schema version after the '@' cannot be empty.", nameof(input)); } - return new SourceSchemaVersion(name, version); + return new FusionPublishHelpers.SourceSchemaVersion(name, version); } if (string.IsNullOrWhiteSpace(input)) @@ -561,8 +562,6 @@ private static SourceSchemaVersion ParseSourceSchemaVersion(string input, string throw new ArgumentException("The source schema name cannot be empty.", nameof(input)); } - return new SourceSchemaVersion(input, tag); + return new FusionPublishHelpers.SourceSchemaVersion(input, tag); } - - private sealed record SourceSchemaVersion(string Name, string Version); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs index 5dcc027bf34..2ca24d45321 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs @@ -23,6 +23,7 @@ public static async Task RequestDeploymentSlotAsync( string tag, string? subgraphId, string? subgraphName, + SourceSchemaVersion[]? sourceSchemaVersions, bool waitForApproval, StatusContext? statusContext, IAnsiConsole console, @@ -36,7 +37,16 @@ public static async Task RequestDeploymentSlotAsync( StageName = stageName, SubgraphName = subgraphName, SubgraphApiId = subgraphId, - WaitForApproval = waitForApproval + WaitForApproval = waitForApproval, + Subgraphs = sourceSchemaVersions is { Length: > 0 } + ? sourceSchemaVersions + .Select(x => new FusionSubgraphVersionInput + { + Name = x.Name, + Tag = x.Version + }) + .ToArray() + : null }; var result = await client.BeginFusionConfigurationPublish.ExecuteAsync(input, cancellationToken); @@ -210,8 +220,7 @@ public static async Task UploadFusionArchiveAsync( { var input = new CommitFusionConfigurationPublishInput { - RequestId = requestId, - Configuration = new(stream, "gateway.far") + RequestId = requestId, Configuration = new(stream, "gateway.far") }; var result = @@ -393,6 +402,8 @@ private static HttpRequestMessage CreateDownloadSourceSchemaVersionRequest( return new HttpRequestMessage(HttpMethod.Get, requestUri); } + internal sealed record SourceSchemaVersion(string Name, string Version); + private sealed class AnsiStreamWriter(TextWriter textWriter) : IStandardStreamWriter { public void Write(string? value) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs index 3e71fd93c53..45d55ad0859 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs @@ -74,6 +74,7 @@ async Task RequestDeploymentSlotAsync(StatusContext? ctx) tag, subgraphId, subgraphName, + sourceSchemaVersions: null, waitForApproval, ctx, console, diff --git a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs index 3b73a1593fc..49876e0a6c4 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs @@ -6,16 +6,16 @@ namespace ChilliCream.Nitro.CommandLine.Client { // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationResult : global::System.IEquatable, ICreateApiKeyCommandMutationResult + public partial class UploadFusionSubgraphResult : global::System.IEquatable, IUploadFusionSubgraphResult { - public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey createApiKey) + public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph uploadFusionSubgraph) { - CreateApiKey = createApiKey; + UploadFusionSubgraph = uploadFusionSubgraph; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey CreateApiKey { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph UploadFusionSubgraph { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutationResult? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraphResult? other) { if (ReferenceEquals(null, other)) { @@ -32,7 +32,7 @@ public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return (CreateApiKey.Equals(other.CreateApiKey)); + return (UploadFusionSubgraph.Equals(other.UploadFusionSubgraph)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52,7 +52,7 @@ public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((CreateApiKeyCommandMutationResult)obj); + return Equals((UploadFusionSubgraphResult)obj); } public override global::System.Int32 GetHashCode() @@ -60,7 +60,7 @@ public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - hash ^= 397 * CreateApiKey.GetHashCode(); + hash ^= 397 * UploadFusionSubgraph.GetHashCode(); return hash; } } @@ -68,18 +68,18 @@ public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload + public partial class UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload { - public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) + public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? fusionSubgraphVersion, global::System.Collections.Generic.IReadOnlyList? errors) { - Result = result; + FusionSubgraphVersion = fusionSubgraphVersion; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? Result { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? FusionSubgraphVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload? other) { if (ReferenceEquals(null, other)) { @@ -96,7 +96,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::Chil return false; } - return (((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((FusionSubgraphVersion is null && other.FusionSubgraphVersion is null) || FusionSubgraphVersion != null && FusionSubgraphVersion.Equals(other.FusionSubgraphVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116,7 +116,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::Chil return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload)obj); } public override global::System.Int32 GetHashCode() @@ -124,9 +124,9 @@ public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::Chil unchecked { int hash = 5; - if (Result != null) + if (FusionSubgraphVersion != null) { - hash ^= 397 * Result.GetHashCode(); + hash ^= 397 * FusionSubgraphVersion.GetHashCode(); } if (Errors != null) @@ -144,18 +144,16 @@ public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::Chil // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret + public partial class UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion { - public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key key, global::System.String secret) + public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(global::System.String id) { - Key = key; - Secret = secret; + Id = id; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key Key { get; } - public global::System.String Secret { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion? other) { if (ReferenceEquals(null, other)) { @@ -172,7 +170,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global:: return false; } - return (Key.Equals(other.Key)) && Secret.Equals(other.Secret); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -192,7 +190,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global:: return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion)obj); } public override global::System.Int32 GetHashCode() @@ -200,8 +198,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global:: unchecked { int hash = 5; - hash ^= 397 * Key.GetHashCode(); - hash ^= 397 * Secret.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -209,23 +206,16 @@ public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global:: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError(global::System.String message) { - this.__typename = __typename; Message = message; - ApiId = apiId; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError? other) { if (ReferenceEquals(null, other)) { @@ -242,7 +232,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global:: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -262,7 +252,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global:: return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError)obj); } public override global::System.Int32 GetHashCode() @@ -270,9 +260,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global:: unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -280,23 +268,16 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global:: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global::System.String __typename, global::System.String message, global::System.String workspaceId) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global::System.String message) { - this.__typename = __typename; Message = message; - WorkspaceId = workspaceId; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String WorkspaceId { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -313,7 +294,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && WorkspaceId.Equals(other.WorkspaceId); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -333,7 +314,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global: return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -341,9 +322,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global: unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * WorkspaceId.GetHashCode(); return hash; } } @@ -351,9 +330,9 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError(global::System.String __typename, global::System.String message) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; @@ -365,7 +344,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSuppo public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -402,7 +381,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSuppo return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -419,13 +398,12 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSuppo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - Errors = errors; } /// @@ -433,9 +411,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::S /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -452,7 +429,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -472,7 +449,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::S return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -482,73 +459,6 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::S int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation - { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(global::System.String message) - { - Message = message; - } - - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Message.Equals(other.Message)); - } - - 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((CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -556,13 +466,12 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global::System.String __typename, global::System.String message, global::System.String roleId) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - RoleId = roleId; } /// @@ -570,9 +479,8 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String RoleId { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError? other) { if (ReferenceEquals(null, other)) { @@ -589,7 +497,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && RoleId.Equals(other.RoleId); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -609,7 +517,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError)obj); } public override global::System.Int32 GetHashCode() @@ -619,7 +527,6 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * RoleId.GetHashCode(); return hash; } } @@ -627,88 +534,16 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [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 + public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError { - public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? workspace) - { - Id = id; - Name = name; - Workspace = workspace; - } - - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? Workspace { get; } - - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); - } - - 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((CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty - { - public CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty(global::System.String message) + public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -745,7 +580,7 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorPro return false; } - return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty)obj); + return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -759,153 +594,75 @@ public CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorPro } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace - { - public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(global::System.String name) - { - Name = name; - } - - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Name.Equals(other.Name)); - } - - 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((CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutationResult + public partial interface IUploadFusionSubgraphResult { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey CreateApiKey { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph UploadFusionSubgraph { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? Result { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? FusionSubgraphVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload : ICreateApiKeyCommandMutation_CreateApiKey + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload : IUploadFusionSubgraph_UploadFusionSubgraph { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key Key { get; } - public global::System.String Secret { get; } + public global::System.String Id { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret : ICreateApiKeyCommandMutation_CreateApiKey_Result + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion : IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IError + public partial interface IInvalidFusionSourceSchemaArchiveError { public global::System.String Message { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IApiNotFoundError : IError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String ApiId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IApiNotFoundError + public partial interface IError { + public global::System.String Message { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IWorkspaceNotFound : IError + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IInvalidFusionSourceSchemaArchiveError, IError { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String WorkspaceId { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IWorkspaceNotFound + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPersonalWorkspaceNotSupportedError : IError + public partial interface IConcurrentOperationError : IError { /// /// The name of the current Object type at runtime. @@ -915,115 +672,60 @@ public partial interface IPersonalWorkspaceNotSupportedError : IError // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IPersonalWorkspaceNotSupportedError + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IConcurrentOperationError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidationError : IError + public partial interface IUnauthorizedOperation : IError { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IValidationError - { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IError + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IUnauthorizedOperation { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRoleNotFoundError : IError + public partial interface IDuplicatedTagError : IError { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String RoleId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IRoleNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IApiKeyDetailPrompt_ApiKey - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? Workspace { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_ApiKey : IApiKeyDetailPrompt_ApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key : ICreateApiKeyCommandMutation_ApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey : ICreateApiKeyCommandMutation_CreateApiKey_Result_Key - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty : ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors - { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IDuplicatedTagError { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace : ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace + public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationResult : global::System.IEquatable, IDeleteApiKeyCommandMutationResult + public partial class FetchConfigurationResult : global::System.IEquatable, IFetchConfigurationResult { - public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey deleteApiKey) + public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? fusionConfigurationByApiId) { - DeleteApiKey = deleteApiKey; + FusionConfigurationByApiId = fusionConfigurationByApiId; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey DeleteApiKey { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? FusionConfigurationByApiId { get; } - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutationResult? other) + public virtual global::System.Boolean Equals(FetchConfigurationResult? other) { if (ReferenceEquals(null, other)) { @@ -1040,7 +742,7 @@ public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return (DeleteApiKey.Equals(other.DeleteApiKey)); + return (((FusionConfigurationByApiId is null && other.FusionConfigurationByApiId is null) || FusionConfigurationByApiId != null && FusionConfigurationByApiId.Equals(other.FusionConfigurationByApiId))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1060,7 +762,7 @@ public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((DeleteApiKeyCommandMutationResult)obj); + return Equals((FetchConfigurationResult)obj); } public override global::System.Int32 GetHashCode() @@ -1068,7 +770,11 @@ public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - hash ^= 397 * DeleteApiKey.GetHashCode(); + if (FusionConfigurationByApiId != null) + { + hash ^= 397 * FusionConfigurationByApiId.GetHashCode(); + } + return hash; } } @@ -1076,18 +782,18 @@ public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload + public partial class FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration : global::System.IEquatable, IFetchConfiguration_FusionConfigurationByApiId_FusionConfiguration { - public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? apiKey, global::System.Collections.Generic.IReadOnlyList? errors) + public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global::System.String downloadUrl, global::System.String tag) { - ApiKey = apiKey; - Errors = errors; + DownloadUrl = downloadUrl; + Tag = tag; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? ApiKey { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String DownloadUrl { get; } + public global::System.String Tag { get; } - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload? other) + public virtual global::System.Boolean Equals(FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration? other) { if (ReferenceEquals(null, other)) { @@ -1104,7 +810,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::Chil return false; } - return (((ApiKey is null && other.ApiKey is null) || ApiKey != null && ApiKey.Equals(other.ApiKey))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (DownloadUrl.Equals(other.DownloadUrl)) && Tag.Equals(other.Tag); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1124,7 +830,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::Chil return false; } - return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload)obj); + return Equals((FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration)obj); } public override global::System.Int32 GetHashCode() @@ -1132,115 +838,46 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::Chil unchecked { int hash = 5; - if (ApiKey != null) - { - hash ^= 397 * ApiKey.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * DownloadUrl.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey + public partial interface IFetchConfigurationResult { - public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? workspace) - { - Id = id; - Name = name; - Workspace = workspace; - } - - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? Workspace { get; } - - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); - } - - 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((DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey)obj); - } + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? FusionConfigurationByApiId { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFetchConfiguration_FusionConfigurationByApiId + { + public global::System.String DownloadUrl { get; } + public global::System.String Tag { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFetchConfiguration_FusionConfigurationByApiId_FusionConfiguration : IFetchConfiguration_FusionConfigurationByApiId + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError + public partial class CreateMockSchemaResult : global::System.IEquatable, ICreateMockSchemaResult { - public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiKeyId) + public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema createMockSchema) { - this.__typename = __typename; - Message = message; - ApiKeyId = apiKeyId; + CreateMockSchema = createMockSchema; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String ApiKeyId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema CreateMockSchema { get; } - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError? other) + public virtual global::System.Boolean Equals(CreateMockSchemaResult? other) { if (ReferenceEquals(null, other)) { @@ -1257,7 +894,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(globa return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiKeyId.Equals(other.ApiKeyId); + return (CreateMockSchema.Equals(other.CreateMockSchema)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1277,7 +914,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(globa return false; } - return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError)obj); + return Equals((CreateMockSchemaResult)obj); } public override global::System.Int32 GetHashCode() @@ -1285,9 +922,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(globa unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiKeyId.GetHashCode(); + hash ^= 397 * CreateMockSchema.GetHashCode(); return hash; } } @@ -1295,16 +930,18 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(globa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation + public partial class CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_CreateMockSchemaPayload { - public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(global::System.String message) + public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) { - Message = message; + MockSchema = mockSchema; + Errors = errors; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MockSchema { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload? other) { if (ReferenceEquals(null, other)) { @@ -1321,7 +958,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(glo return false; } - return (Message.Equals(other.Message)); + return (((MockSchema is null && other.MockSchema is null) || MockSchema != null && MockSchema.Equals(other.MockSchema))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1341,7 +978,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(glo return false; } - return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation)obj); + return Equals((CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload)obj); } public override global::System.Int32 GetHashCode() @@ -1349,7 +986,19 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(glo unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + if (MockSchema != null) + { + hash ^= 397 * MockSchema.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -1357,16 +1006,30 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace + public partial class CreateMockSchema_CreateMockSchema_MockSchema_MockSchema : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_MockSchema { - public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(global::System.String name) + public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) { + Id = id; Name = name; + CreatedAt = createdAt; + CreatedBy = createdBy; + ModifiedAt = modifiedAt; + ModifiedBy = modifiedBy; + DownstreamUrl = downstreamUrl; + Url = url; } + public global::System.String Id { get; } public global::System.String Name { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } + public global::System.DateTimeOffset ModifiedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } + public global::System.Uri DownstreamUrl { get; } + public global::System.String Url { get; } - public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_MockSchema? other) { if (ReferenceEquals(null, other)) { @@ -1383,7 +1046,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(globa return false; } - return (Name.Equals(other.Name)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1403,7 +1066,7 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(globa return false; } - return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace)obj); + return Equals((CreateMockSchema_CreateMockSchema_MockSchema_MockSchema)obj); } public override global::System.Int32 GetHashCode() @@ -1411,106 +1074,38 @@ public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(globa unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * CreatedBy.GetHashCode(); + hash ^= 397 * ModifiedAt.GetHashCode(); + hash ^= 397 * ModifiedBy.GetHashCode(); + hash ^= 397 * DownstreamUrl.GetHashCode(); + hash ^= 397 * Url.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey DeleteApiKey { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? ApiKey { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload : IDeleteApiKeyCommandMutation_DeleteApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey : IDeleteApiKeyCommand_ApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors + public partial class CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError { - } + public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + { + this.__typename = __typename; + Message = message; + ApiId = apiId; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IApiKeyNotFoundError - { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String ApiKeyId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError : IDeleteApiKeyCommandMutation_DeleteApiKey_Errors, IApiKeyNotFoundError, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation : IDeleteApiKeyCommandMutation_DeleteApiKey_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryResult : global::System.IEquatable, IListApiKeyCommandQueryResult - { - public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? workspaceById) - { - WorkspaceById = workspaceById; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? WorkspaceById { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(ListApiKeyCommandQueryResult? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -1527,7 +1122,7 @@ public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1547,7 +1142,7 @@ public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return Equals((ListApiKeyCommandQueryResult)obj); + return Equals((CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -1555,11 +1150,9 @@ public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client unchecked { int hash = 5; - if (WorkspaceById != null) - { - hash ^= 397 * WorkspaceById.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -1567,16 +1160,23 @@ public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_Workspace + public partial class CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError { - public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? apiKeys) + public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) { - ApiKeys = apiKeys; + this.__typename = __typename; + Message = message; + Name = name; } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? ApiKeys { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_Workspace? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError? other) { if (ReferenceEquals(null, other)) { @@ -1593,7 +1193,7 @@ public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro. return false; } - return (((ApiKeys is null && other.ApiKeys is null) || ApiKeys != null && ApiKeys.Equals(other.ApiKeys))); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1613,7 +1213,7 @@ public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro. return false; } - return Equals((ListApiKeyCommandQuery_WorkspaceById_Workspace)obj); + return Equals((CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError)obj); } public override global::System.Int32 GetHashCode() @@ -1621,39 +1221,23 @@ public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro. unchecked { int hash = 5; - if (ApiKeys != null) - { - hash ^= 397 * ApiKeys.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection + public partial class CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation { - public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo pageInfo) + public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() { - Edges = edges; - PageInfo = pageInfo; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo PageInfo { get; } - - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -1670,7 +1254,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::Sy return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1690,7 +1274,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::Sy return false; } - return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection)obj); + return Equals((CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -1698,43 +1282,20 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::Sy unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge + public partial class CreateMockSchema_CreateMockSchema_Errors_ValidationError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_ValidationError { - public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node node) + public CreateMockSchema_CreateMockSchema_Errors_ValidationError() { - Cursor = cursor; - Node = node; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node Node { get; } - - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_ValidationError? other) { if (ReferenceEquals(null, other)) { @@ -1751,7 +1312,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::Sy return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1771,7 +1332,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::Sy return false; } - return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge)obj); + return Equals((CreateMockSchema_CreateMockSchema_Errors_ValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -1779,46 +1340,23 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::Sy unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo + public partial class CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo { - public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + Username = username; } - /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. - /// - public global::System.String? StartCursor { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -1835,7 +1373,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1855,7 +1393,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy return false; } - return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo)obj); + return Equals((CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -1863,18 +1401,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * Username.GetHashCode(); return hash; } } @@ -1882,20 +1409,16 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [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 + public partial class CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo { - public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? workspace) + public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) { - Id = id; - Name = name; - Workspace = workspace; + Username = username; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? Workspace { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey? other) + public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -1912,7 +1435,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::Sy return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -1932,7 +1455,7 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::Sy return false; } - return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey)obj); + return Equals((CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -1940,247 +1463,149 @@ public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::Sy unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - + hash ^= 397 * Username.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace + public partial interface ICreateMockSchemaResult { - public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(global::System.String name) - { - Name = name; - } - - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Name.Equals(other.Name)); - } - - 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((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema CreateMockSchema { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQueryResult + public partial interface ICreateMockSchema_CreateMockSchema { - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? WorkspaceById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MockSchema { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById + public partial interface ICreateMockSchema_CreateMockSchema_CreateMockSchemaPayload : ICreateMockSchema_CreateMockSchema { - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? ApiKeys { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_Workspace : IListApiKeyCommandQuery_WorkspaceById + public partial interface IMockSchemaDetailPrompt { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } + public global::System.DateTimeOffset ModifiedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } + public global::System.Uri DownstreamUrl { get; } + public global::System.String Url { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema : IMockSchemaDetailPrompt { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection : IListApiKeyCommandQuery_WorkspaceById_ApiKeys + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_MockSchema : ICreateMockSchema_CreateMockSchema_MockSchema { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommand_ApiKeyEdge + public partial interface ICreateMockSchema_CreateMockSchema_Errors { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges : IListApiKeyCommand_ApiKeyEdge + public partial interface IApiNotFoundError : IError { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String ApiId { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges + public partial interface ICreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError : ICreateMockSchema_CreateMockSchema_Errors, IApiNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageInfo + public partial interface IMockSchemaNonUniqueNameError : IError { /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo : IPageInfo + public partial interface ICreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError : ICreateMockSchema_CreateMockSchema_Errors, IMockSchemaNonUniqueNameError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo + public partial interface ICreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation : ICreateMockSchema_CreateMockSchema_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey + public partial interface ICreateMockSchema_CreateMockSchema_Errors_ValidationError : ICreateMockSchema_CreateMockSchema_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node : IListApiKeyCommand_ApiKey + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy { + public global::System.String Username { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo : ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy { - public global::System.String Name { get; } + public global::System.String Username { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace + public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo : ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationResult : global::System.IEquatable, ICreateApiCommandMutationResult + public partial class UpdateMockSchemaResult : global::System.IEquatable, IUpdateMockSchemaResult { - public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) + public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema updateMockSchema) { - PushWorkspaceChanges = pushWorkspaceChanges; + UpdateMockSchema = updateMockSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema UpdateMockSchema { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutationResult? other) + public virtual global::System.Boolean Equals(UpdateMockSchemaResult? other) { if (ReferenceEquals(null, other)) { @@ -2197,7 +1622,7 @@ public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie return false; } - return (PushWorkspaceChanges.Equals(other.PushWorkspaceChanges)); + return (UpdateMockSchema.Equals(other.UpdateMockSchema)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2217,7 +1642,7 @@ public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie return false; } - return Equals((CreateApiCommandMutationResult)obj); + return Equals((UpdateMockSchemaResult)obj); } public override global::System.Int32 GetHashCode() @@ -2225,7 +1650,7 @@ public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie unchecked { int hash = 5; - hash ^= 397 * PushWorkspaceChanges.GetHashCode(); + hash ^= 397 * UpdateMockSchema.GetHashCode(); return hash; } } @@ -2233,18 +1658,18 @@ public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload + public partial class UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload { - public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) + public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) { - Changes = changes; + MockSchema = mockSchema; Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList? Changes { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MockSchema { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload? other) { if (ReferenceEquals(null, other)) { @@ -2261,7 +1686,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((MockSchema is null && other.MockSchema is null) || MockSchema != null && MockSchema.Equals(other.MockSchema))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2281,7 +1706,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload)obj); } public override global::System.Int32 GetHashCode() @@ -2289,12 +1714,9 @@ public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload unchecked { int hash = 5; - if (Changes != null) + if (MockSchema != null) { - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + hash ^= 397 * MockSchema.GetHashCode(); } if (Errors != null) @@ -2312,20 +1734,30 @@ public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload + public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(global::System.String referenceId, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? error, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? result) + public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) { - ReferenceId = referenceId; - Error = error; - Result = result; + Id = id; + Name = name; + CreatedAt = createdAt; + CreatedBy = createdBy; + ModifiedAt = modifiedAt; + ModifiedBy = modifiedBy; + DownstreamUrl = downstreamUrl; + Url = url; } - public global::System.String ReferenceId { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } + public global::System.DateTimeOffset ModifiedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } + public global::System.Uri DownstreamUrl { get; } + public global::System.String Url { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema? other) { if (ReferenceEquals(null, other)) { @@ -2342,7 +1774,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayl return false; } - return (ReferenceId.Equals(other.ReferenceId)) && ((Error is null && other.Error is null) || Error != null && Error.Equals(other.Error)) && ((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2362,7 +1794,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayl return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema)obj); } public override global::System.Int32 GetHashCode() @@ -2370,17 +1802,14 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayl unchecked { int hash = 5; - hash ^= 397 * ReferenceId.GetHashCode(); - if (Error != null) - { - hash ^= 397 * Error.GetHashCode(); - } - - if (Result != null) - { - hash ^= 397 * Result.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * CreatedBy.GetHashCode(); + hash ^= 397 * ModifiedAt.GetHashCode(); + hash ^= 397 * ModifiedBy.GetHashCode(); + hash ^= 397 * DownstreamUrl.GetHashCode(); + hash ^= 397 * Url.GetHashCode(); return hash; } } @@ -2388,16 +1817,23 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation + public partial class UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError { - public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) { + this.__typename = __typename; Message = message; + Name = name; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError? other) { if (ReferenceEquals(null, other)) { @@ -2414,7 +1850,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperatio return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2434,7 +1870,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperatio return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError)obj); } public override global::System.Int32 GetHashCode() @@ -2442,7 +1878,9 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperatio unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -2450,16 +1888,21 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperatio // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid + public partial class UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError { - public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -2476,7 +1919,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInval return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2496,7 +1939,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInval return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -2504,6 +1947,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInval unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -2512,16 +1956,13 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInval // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed + public partial class UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -2538,7 +1979,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidat return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2558,7 +1999,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidat return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -2566,7 +2007,6 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidat unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -2574,16 +2014,13 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidat // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict + public partial class UpdateMockSchema_UpdateMockSchema_Errors_ValidationError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_ValidationError { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_ValidationError? other) { if (ReferenceEquals(null, other)) { @@ -2600,7 +2037,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChange return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2620,7 +2057,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChange return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_Errors_ValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -2628,7 +2065,6 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChange unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -2636,16 +2072,16 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChange // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict + public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) { - Message = message; + Username = username; } - public global::System.String Message { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -2662,7 +2098,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDelete return false; } - return (Message.Equals(other.Message)); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2682,7 +2118,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDelete return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -2690,7 +2126,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDelete unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Username.GetHashCode(); return hash; } } @@ -2698,16 +2134,16 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDelete // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict + public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) + public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) { - Message = message; + Username = username; } - public global::System.String Message { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict? other) + public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -2724,7 +2160,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCol return false; } - return (Message.Equals(other.Message)); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2744,7 +2180,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCol return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict)obj); + return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -2752,86 +2188,123 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCol unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Username.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange + public partial interface IUpdateMockSchemaResult { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) - { - Message = message; - } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema UpdateMockSchema { get; } + } - public global::System.String Message { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MockSchema { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload : IUpdateMockSchema_UpdateMockSchema + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema : IMockSchemaDetailPrompt + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema : IUpdateMockSchema_UpdateMockSchema_MockSchema + { + } - return (Message.Equals(other.Message)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_Errors + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError : IUpdateMockSchema_UpdateMockSchema_Errors, IMockSchemaNonUniqueNameError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMockSchemaNotFoundError : IError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError : IUpdateMockSchema_UpdateMockSchema_Errors, IMockSchemaNotFoundError + { + } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation : IUpdateMockSchema_UpdateMockSchema_Errors + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_ValidationError : IUpdateMockSchema_UpdateMockSchema_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy + { + public global::System.String Username { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo : IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy + { + public global::System.String Username { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo : IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange + public partial class ListMockCommandQueryResult : global::System.IEquatable, IListMockCommandQueryResult { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) + public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? apiById) { - Message = message; + ApiById = apiById; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? ApiById { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange? other) + public virtual global::System.Boolean Equals(ListMockCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -2848,7 +2321,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotF return false; } - return (Message.Equals(other.Message)); + return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2868,7 +2341,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotF return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange)obj); + return Equals((ListMockCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -2876,7 +2349,11 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotF unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + if (ApiById != null) + { + hash ^= 397 * ApiById.GetHashCode(); + } + return hash; } } @@ -2884,13 +2361,16 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotF // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument + public partial class ListMockCommandQuery_ApiById_Api : global::System.IEquatable, IListMockCommandQuery_ApiById_Api { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() + public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? mockSchemas) { + MockSchemas = mockSchemas; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument? other) + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MockSchemas { get; } + + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_Api? other) { if (ReferenceEquals(null, other)) { @@ -2907,7 +2387,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument( return false; } - return true; + return (((MockSchemas is null && other.MockSchemas is null) || MockSchemas != null && MockSchemas.Equals(other.MockSchemas))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2927,7 +2407,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument( return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument)obj); + return Equals((ListMockCommandQuery_ApiById_Api)obj); } public override global::System.Int32 GetHashCode() @@ -2935,31 +2415,39 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument( unchecked { int hash = 5; + if (MockSchemas != null) + { + hash ^= 397 * MockSchemas.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api + public partial class ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global::System.String name, global::System.String id, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo pageInfo) { - Name = name; - Id = id; - Path = path; - Workspace = workspace; - Settings = settings; + Edges = edges; + PageInfo = pageInfo; } - public global::System.String Name { get; } - public global::System.String Id { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api? other) + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection? other) { if (ReferenceEquals(null, other)) { @@ -2976,7 +2464,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global:: return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -2996,7 +2484,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global:: return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection)obj); } public override global::System.Int32 GetHashCode() @@ -3004,33 +2492,43 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global:: unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - if (Workspace != null) + if (Edges != null) { - hash ^= 397 * Workspace.GetHashCode(); + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } } - hash ^= 397 * Settings.GetHashCode(); + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument + public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument() + public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node node) { + Cursor = cursor; + Node = node; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument? other) + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node Node { get; } + + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge? other) { if (ReferenceEquals(null, other)) { @@ -3047,7 +2545,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDoc return false; } - return true; + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3067,7 +2565,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDoc return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge)obj); } public override global::System.Int32 GetHashCode() @@ -3075,20 +2573,46 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDoc unchecked { int hash = 5; + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment + public partial class ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment() + public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment? other) + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } + + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -3105,7 +2629,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment( return false; } - return true; + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3125,7 +2649,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment( return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -3133,6 +2657,18 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment( unchecked { int hash = 5; + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -3140,18 +2676,30 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace + public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String id, global::System.String name) + public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) { Id = id; Name = name; + CreatedAt = createdAt; + CreatedBy = createdBy; + ModifiedAt = modifiedAt; + ModifiedBy = modifiedBy; + DownstreamUrl = downstreamUrl; + Url = url; } public global::System.String Id { get; } public global::System.String Name { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } + public global::System.DateTimeOffset ModifiedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } + public global::System.Uri DownstreamUrl { get; } + public global::System.String Url { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema? other) { if (ReferenceEquals(null, other)) { @@ -3168,7 +2716,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Wo return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3188,7 +2736,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Wo return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema)obj); } public override global::System.Int32 GetHashCode() @@ -3198,6 +2746,12 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Wo int hash = 5; hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * CreatedBy.GetHashCode(); + hash ^= 397 * ModifiedAt.GetHashCode(); + hash ^= 397 * ModifiedBy.GetHashCode(); + hash ^= 397 * DownstreamUrl.GetHashCode(); + hash ^= 397 * Url.GetHashCode(); return hash; } } @@ -3205,16 +2759,16 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Wo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings + public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) + public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) { - SchemaRegistry = schemaRegistry; + Username = username; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings? other) + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -3231,7 +2785,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Api return false; } - return (SchemaRegistry.Equals(other.SchemaRegistry)); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3251,7 +2805,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Api return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -3259,7 +2813,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Api unchecked { int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); + hash ^= 397 * Username.GetHashCode(); return hash; } } @@ -3267,18 +2821,16 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Api // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings + public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo { - public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + Username = username; } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings? other) + public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -3295,7 +2847,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Sch return false; } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3315,7 +2867,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Sch return false; } - return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -3323,8 +2875,7 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Sch unchecked { int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); + hash ^= 397 * Username.GetHashCode(); return hash; } } @@ -3332,193 +2883,177 @@ public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_Sch // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges - { - public global::System.Collections.Generic.IReadOnlyList? Changes { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateApiCommandMutation_PushWorkspaceChanges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes - { - public global::System.String ReferenceId { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateApiCommandMutation_PushWorkspaceChanges_Changes - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : ICreateApiCommandMutation_PushWorkspaceChanges_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : ICreateApiCommandMutation_PushWorkspaceChanges_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface IListMockCommandQueryResult { + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? ApiById { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface IListMockCommandQuery_ApiById { + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MockSchemas { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface IListMockCommandQuery_ApiById_Api : IListMockCommandQuery_ApiById { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface IListMockCommandQuery_ApiById_MockSchemas { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface IListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection : IListMockCommandQuery_ApiById_MockSchemas { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface IListMockCommand_MockEdge { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges : IListMockCommand_MockEdge { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IApiDetailPrompt_Api + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : IListMockCommandQuery_ApiById_MockSchemas_Edges { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_Api : IApiDetailPrompt_Api + public partial interface IPageInfo { + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result, ICreateApiCommandMutation_Api + public partial interface IListMockCommandQuery_ApiById_MockSchemas_PageInfo : IPageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface IListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo : IListMockCommandQuery_ApiById_MockSchemas_PageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface IListMockCommand_Mock : IMockSchemaDetailPrompt { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node : IListMockCommand_Mock { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + public global::System.String Username { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Username { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry + public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryResult : global::System.IEquatable, IDeleteApiCommandQueryResult + public partial class ShowClientCommandQueryResult : global::System.IEquatable, IShowClientCommandQueryResult { - public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? node) + public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? node) { Node = node; } @@ -3526,9 +3061,9 @@ public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client. /// /// Fetches an object given its ID. /// - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandQueryResult? other) + public virtual global::System.Boolean Equals(ShowClientCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -3565,7 +3100,7 @@ public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client. return false; } - return Equals((DeleteApiCommandQueryResult)obj); + return Equals((ShowClientCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -3585,20 +3120,13 @@ public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Api : global::System.IEquatable, IDeleteApiCommandQuery_Node_Api + public partial class ShowClientCommandQuery_Node_Api : global::System.IEquatable, IShowClientCommandQuery_Node_Api { - public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System.String version, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? workspace) + public ShowClientCommandQuery_Node_Api() { - Name = name; - Version = version; - Workspace = workspace; } - public global::System.String Name { get; } - public global::System.String Version { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? Workspace { get; } - - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -3615,7 +3143,7 @@ public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System return false; } - return (Name.Equals(other.Name)) && Version.Equals(other.Version) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3635,7 +3163,7 @@ public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System return false; } - return Equals((DeleteApiCommandQuery_Node_Api)obj); + return Equals((ShowClientCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -3643,13 +3171,6 @@ public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Version.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - return hash; } } @@ -3657,13 +3178,13 @@ public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_ApiDocument : global::System.IEquatable, IDeleteApiCommandQuery_Node_ApiDocument + public partial class ShowClientCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowClientCommandQuery_Node_ApiDocument { - public DeleteApiCommandQuery_Node_ApiDocument() + public ShowClientCommandQuery_Node_ApiDocument() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ApiDocument? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -3700,7 +3221,7 @@ public DeleteApiCommandQuery_Node_ApiDocument() return false; } - return Equals((DeleteApiCommandQuery_Node_ApiDocument)obj); + return Equals((ShowClientCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -3715,13 +3236,13 @@ public DeleteApiCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_ApiKey : global::System.IEquatable, IDeleteApiCommandQuery_Node_ApiKey + public partial class ShowClientCommandQuery_Node_ApiKey : global::System.IEquatable, IShowClientCommandQuery_Node_ApiKey { - public DeleteApiCommandQuery_Node_ApiKey() + public ShowClientCommandQuery_Node_ApiKey() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ApiKey? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -3758,7 +3279,7 @@ public DeleteApiCommandQuery_Node_ApiKey() return false; } - return Equals((DeleteApiCommandQuery_Node_ApiKey)obj); + return Equals((ShowClientCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -3773,13 +3294,22 @@ public DeleteApiCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Client : global::System.IEquatable, IDeleteApiCommandQuery_Node_Client + public partial class ShowClientCommandQuery_Node_Client : global::System.IEquatable, IShowClientCommandQuery_Node_Client { - public DeleteApiCommandQuery_Node_Client() + public ShowClientCommandQuery_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? api, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? versions) { + Id = id; + Name = name; + Api = api; + Versions = versions; } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Client? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -3796,7 +3326,7 @@ public DeleteApiCommandQuery_Node_Client() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -3816,7 +3346,7 @@ public DeleteApiCommandQuery_Node_Client() return false; } - return Equals((DeleteApiCommandQuery_Node_Client)obj); + return Equals((ShowClientCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -3824,6 +3354,18 @@ public DeleteApiCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Api != null) + { + hash ^= 397 * Api.GetHashCode(); + } + + if (Versions != null) + { + hash ^= 397 * Versions.GetHashCode(); + } + return hash; } } @@ -3831,13 +3373,13 @@ public DeleteApiCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientChangeLog + public partial class ShowClientCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_ClientChangeLog { - public DeleteApiCommandQuery_Node_ClientChangeLog() + public ShowClientCommandQuery_Node_ClientChangeLog() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientChangeLog? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -3874,7 +3416,7 @@ public DeleteApiCommandQuery_Node_ClientChangeLog() return false; } - return Equals((DeleteApiCommandQuery_Node_ClientChangeLog)obj); + return Equals((ShowClientCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -3889,13 +3431,13 @@ public DeleteApiCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_ClientDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientDeployment + public partial class ShowClientCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_ClientDeployment { - public DeleteApiCommandQuery_Node_ClientDeployment() + public ShowClientCommandQuery_Node_ClientDeployment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientDeployment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -3932,7 +3474,7 @@ public DeleteApiCommandQuery_Node_ClientDeployment() return false; } - return Equals((DeleteApiCommandQuery_Node_ClientDeployment)obj); + return Equals((ShowClientCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -3947,13 +3489,13 @@ public DeleteApiCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_ClientVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientVersion + public partial class ShowClientCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_ClientVersion { - public DeleteApiCommandQuery_Node_ClientVersion() + public ShowClientCommandQuery_Node_ClientVersion() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -3990,7 +3532,7 @@ public DeleteApiCommandQuery_Node_ClientVersion() return false; } - return Equals((DeleteApiCommandQuery_Node_ClientVersion)obj); + return Equals((ShowClientCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -4005,13 +3547,13 @@ public DeleteApiCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IDeleteApiCommandQuery_Node_CoordinateClientUsageMetrics + public partial class ShowClientCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowClientCommandQuery_Node_CoordinateClientUsageMetrics { - public DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() + public ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -4048,7 +3590,7 @@ public DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((ShowClientCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -4063,13 +3605,13 @@ public DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Environment : global::System.IEquatable, IDeleteApiCommandQuery_Node_Environment + public partial class ShowClientCommandQuery_Node_Environment : global::System.IEquatable, IShowClientCommandQuery_Node_Environment { - public DeleteApiCommandQuery_Node_Environment() + public ShowClientCommandQuery_Node_Environment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Environment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -4106,7 +3648,7 @@ public DeleteApiCommandQuery_Node_Environment() return false; } - return Equals((DeleteApiCommandQuery_Node_Environment)obj); + return Equals((ShowClientCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -4121,13 +3663,13 @@ public DeleteApiCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_FusionConfigurationChangeLog + public partial class ShowClientCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_FusionConfigurationChangeLog { - public DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() + public ShowClientCommandQuery_Node_FusionConfigurationChangeLog() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_FusionConfigurationChangeLog? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -4164,7 +3706,7 @@ public DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((DeleteApiCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((ShowClientCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -4179,13 +3721,13 @@ public DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_FusionConfigurationDeployment + public partial class ShowClientCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_FusionConfigurationDeployment { - public DeleteApiCommandQuery_Node_FusionConfigurationDeployment() + public ShowClientCommandQuery_Node_FusionConfigurationDeployment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -4222,7 +3764,7 @@ public DeleteApiCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((DeleteApiCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((ShowClientCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -4237,13 +3779,13 @@ public DeleteApiCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4280,7 +3822,7 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4295,13 +3837,13 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLDirectiveDefinition + public partial class ShowClientCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLDirectiveDefinition { - public DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() + public ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4338,7 +3880,7 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4353,13 +3895,13 @@ public DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLEnumTypeDefinition { - public DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() + public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4396,7 +3938,7 @@ public DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4411,13 +3953,13 @@ public DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLEnumValueDefinition + public partial class ShowClientCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLEnumValueDefinition { - public DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() + public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4454,7 +3996,7 @@ public DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4469,13 +4011,13 @@ public DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4512,7 +4054,7 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4527,13 +4069,13 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4570,7 +4112,7 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4585,13 +4127,13 @@ public DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4628,7 +4170,7 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4643,13 +4185,13 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4686,7 +4228,7 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4701,13 +4243,13 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4744,7 +4286,7 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4759,13 +4301,13 @@ public DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4802,7 +4344,7 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4817,13 +4359,13 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLObjectFieldDefinition { - public DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() + public ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4860,7 +4402,7 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4875,13 +4417,13 @@ public DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLScalarTypeDefinition { - public DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() + public ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4918,7 +4460,7 @@ public DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4933,13 +4475,13 @@ public DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLUnionTypeDefinition { - public DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() + public ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -4976,7 +4518,7 @@ public DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -4991,13 +4533,13 @@ public DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Group : global::System.IEquatable, IDeleteApiCommandQuery_Node_Group + public partial class ShowClientCommandQuery_Node_Group : global::System.IEquatable, IShowClientCommandQuery_Node_Group { - public DeleteApiCommandQuery_Node_Group() + public ShowClientCommandQuery_Node_Group() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Group? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -5034,7 +4576,7 @@ public DeleteApiCommandQuery_Node_Group() return false; } - return Equals((DeleteApiCommandQuery_Node_Group)obj); + return Equals((ShowClientCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -5049,13 +4591,13 @@ public DeleteApiCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollection + public partial class ShowClientCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollection { - public DeleteApiCommandQuery_Node_McpFeatureCollection() + public ShowClientCommandQuery_Node_McpFeatureCollection() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -5092,7 +4634,7 @@ public DeleteApiCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((DeleteApiCommandQuery_Node_McpFeatureCollection)obj); + return Equals((ShowClientCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -5107,13 +4649,13 @@ public DeleteApiCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionChangeLog { - public DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() + public ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -5150,7 +4692,7 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -5165,13 +4707,13 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionDeployment + public partial class ShowClientCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionDeployment { - public DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() + public ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -5208,7 +4750,7 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -5223,13 +4765,13 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionVersion + public partial class ShowClientCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionVersion { - public DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() + public ShowClientCommandQuery_Node_McpFeatureCollectionVersion() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -5266,7 +4808,7 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -5281,13 +4823,13 @@ public DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollection + public partial class ShowClientCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollection { - public DeleteApiCommandQuery_Node_OpenApiCollection() + public ShowClientCommandQuery_Node_OpenApiCollection() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -5324,7 +4866,7 @@ public DeleteApiCommandQuery_Node_OpenApiCollection() return false; } - return Equals((DeleteApiCommandQuery_Node_OpenApiCollection)obj); + return Equals((ShowClientCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -5339,13 +4881,13 @@ public DeleteApiCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionChangeLog + public partial class ShowClientCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionChangeLog { - public DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() + public ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -5382,7 +4924,7 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((ShowClientCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -5397,13 +4939,13 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionDeployment + public partial class ShowClientCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionDeployment { - public DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() + public ShowClientCommandQuery_Node_OpenApiCollectionDeployment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -5440,7 +4982,7 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((ShowClientCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -5455,13 +4997,13 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionVersion + public partial class ShowClientCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionVersion { - public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() + public ShowClientCommandQuery_Node_OpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -5498,7 +5040,7 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((ShowClientCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -5513,13 +5055,13 @@ public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() // 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 + public partial class ShowClientCommandQuery_Node_Organization : global::System.IEquatable, IShowClientCommandQuery_Node_Organization { - public DeleteApiCommandQuery_Node_Organization() + public ShowClientCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -5556,7 +5098,7 @@ public DeleteApiCommandQuery_Node_Organization() return false; } - return Equals((DeleteApiCommandQuery_Node_Organization)obj); + return Equals((ShowClientCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -5571,13 +5113,13 @@ public DeleteApiCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_OrganizationMember : global::System.IEquatable, IDeleteApiCommandQuery_Node_OrganizationMember + public partial class ShowClientCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowClientCommandQuery_Node_OrganizationMember { - public DeleteApiCommandQuery_Node_OrganizationMember() + public ShowClientCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -5614,7 +5156,7 @@ public DeleteApiCommandQuery_Node_OrganizationMember() return false; } - return Equals((DeleteApiCommandQuery_Node_OrganizationMember)obj); + return Equals((ShowClientCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -5629,13 +5171,13 @@ public DeleteApiCommandQuery_Node_OrganizationMember() // 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 + public partial class ShowClientCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_SchemaChangeLog { - public DeleteApiCommandQuery_Node_SchemaChangeLog() + public ShowClientCommandQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -5672,7 +5214,7 @@ public DeleteApiCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((DeleteApiCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ShowClientCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -5687,13 +5229,13 @@ public DeleteApiCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_SchemaDeployment + public partial class ShowClientCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_SchemaDeployment { - public DeleteApiCommandQuery_Node_SchemaDeployment() + public ShowClientCommandQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -5730,7 +5272,7 @@ public DeleteApiCommandQuery_Node_SchemaDeployment() return false; } - return Equals((DeleteApiCommandQuery_Node_SchemaDeployment)obj); + return Equals((ShowClientCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -5745,13 +5287,13 @@ public DeleteApiCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Stage : global::System.IEquatable, IDeleteApiCommandQuery_Node_Stage + public partial class ShowClientCommandQuery_Node_Stage : global::System.IEquatable, IShowClientCommandQuery_Node_Stage { - public DeleteApiCommandQuery_Node_Stage() + public ShowClientCommandQuery_Node_Stage() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -5788,7 +5330,7 @@ public DeleteApiCommandQuery_Node_Stage() return false; } - return Equals((DeleteApiCommandQuery_Node_Stage)obj); + return Equals((ShowClientCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -5803,13 +5345,13 @@ public DeleteApiCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_User : global::System.IEquatable, IDeleteApiCommandQuery_Node_User + public partial class ShowClientCommandQuery_Node_User : global::System.IEquatable, IShowClientCommandQuery_Node_User { - public DeleteApiCommandQuery_Node_User() + public ShowClientCommandQuery_Node_User() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -5846,7 +5388,7 @@ public DeleteApiCommandQuery_Node_User() return false; } - return Equals((DeleteApiCommandQuery_Node_User)obj); + return Equals((ShowClientCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -5861,13 +5403,13 @@ public DeleteApiCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Workspace : global::System.IEquatable, IDeleteApiCommandQuery_Node_Workspace + public partial class ShowClientCommandQuery_Node_Workspace : global::System.IEquatable, IShowClientCommandQuery_Node_Workspace { - public DeleteApiCommandQuery_Node_Workspace() + public ShowClientCommandQuery_Node_Workspace() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -5904,7 +5446,7 @@ public DeleteApiCommandQuery_Node_Workspace() return false; } - return Equals((DeleteApiCommandQuery_Node_Workspace)obj); + return Equals((ShowClientCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -5919,13 +5461,13 @@ public DeleteApiCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IDeleteApiCommandQuery_Node_WorkspaceDocument + public partial class ShowClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowClientCommandQuery_Node_WorkspaceDocument { - public DeleteApiCommandQuery_Node_WorkspaceDocument() + public ShowClientCommandQuery_Node_WorkspaceDocument() { } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -5962,7 +5504,7 @@ public DeleteApiCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((DeleteApiCommandQuery_Node_WorkspaceDocument)obj); + return Equals((ShowClientCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -5977,16 +5519,324 @@ public DeleteApiCommandQuery_Node_WorkspaceDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IDeleteApiCommandQuery_Node_Workspace_Workspace + public partial class ShowClientCommandQuery_Node_Api_Api : global::System.IEquatable, IShowClientCommandQuery_Node_Api_Api { - public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) + public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + { + Name = name; + Path = path; + } + + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Api_Api? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + } + + 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_Api_Api)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_ClientVersionConnection : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_ClientVersionConnection + { + public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo pageInfo) + { + Edges = edges; + PageInfo = pageInfo; + } + + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_ClientVersionConnection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + } + + 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_Versions_ClientVersionConnection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge + { + public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) + { + Cursor = cursor; + Node = node; + } + + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + } + + 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_Versions_Edges_ClientVersionEdge)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_PageInfo_PageInfo + { + public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + { + HasNextPage = hasNextPage; + EndCursor = endCursor; + } + + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + } + + 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_Versions_PageInfo_PageInfo)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion + { + public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) { Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; } public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -6003,7 +5853,7 @@ public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) return false; } - return (Id.Equals(other.Id)); + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6023,7 +5873,7 @@ public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) return false; } - return Equals((DeleteApiCommandQuery_Node_Workspace_Workspace)obj); + return Equals((ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -6032,6 +5882,141 @@ public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) { int hash = 5; hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) + { + hash ^= 397 * PublishedTo_elm.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + { + public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) + { + Stage = stage; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + } + + 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_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Stage != null) + { + hash ^= 397 * Stage.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage + { + public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + { + Name = name; + } + + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)); + } + + 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_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -6039,12 +6024,12 @@ public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQueryResult + public partial interface IShowClientCommandQueryResult { /// /// Fetches an object given its ID. /// - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -6052,290 +6037,421 @@ public partial interface IDeleteApiCommandQueryResult /// The node interface is implemented by entities that have a global unique identifier. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Api + public partial interface IShowClientCommandQuery_Node_Api : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_ApiDocument : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_ApiKey : IShowClientCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientDetailPrompt_Client { + public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.String Version { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Api : IDeleteApiCommandQuery_Node, IDeleteApiCommandQuery_Api + public partial interface IShowClientCommandQuery_Node_Client : IShowClientCommandQuery_Node, IClientDetailPrompt_Client { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_ApiDocument : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_ClientChangeLog : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_ApiKey : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_ClientDeployment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Client : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_ClientVersion : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_ClientChangeLog : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_CoordinateClientUsageMetrics : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_ClientDeployment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Environment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_ClientVersion : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_FusionConfigurationChangeLog : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_CoordinateClientUsageMetrics : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_FusionConfigurationDeployment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Environment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationChangeLog : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationDeployment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLEnumTypeDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLEnumValueDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumValueDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLScalarTypeDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_GraphQLUnionTypeDefinition : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Group : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_McpFeatureCollection : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionChangeLog : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Group : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionDeployment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollection : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionVersion : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_OpenApiCollection : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionDeployment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_OpenApiCollectionChangeLog : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionVersion : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_OpenApiCollectionDeployment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_OpenApiCollection : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_OpenApiCollectionVersion : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionChangeLog : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Organization : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionDeployment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_OrganizationMember : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionVersion : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_SchemaChangeLog : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Organization : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_SchemaDeployment : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_OrganizationMember : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Stage : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_SchemaChangeLog : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_User : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_SchemaDeployment : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Workspace : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Stage : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_WorkspaceDocument : IShowClientCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_User : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Api_1 { + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Workspace : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Api_Api : IShowClientCommandQuery_Node_Api_1 { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_WorkspaceDocument : IDeleteApiCommandQuery_Node + public partial interface IShowClientCommandQuery_Node_Versions { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Workspace_1 + public partial interface IShowClientCommandQuery_Node_Versions_ClientVersionConnection : IShowClientCommandQuery_Node_Versions + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientDetailPrompt_ClientVersionEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge : IShowClientCommandQuery_Node_Versions_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_PageInfo + { + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_PageInfo_PageInfo : IShowClientCommandQuery_Node_Versions_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node { public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQuery_Node_Workspace_Workspace : IDeleteApiCommandQuery_Node_Workspace_1 + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion : IShowClientCommandQuery_Node_Versions_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationResult : global::System.IEquatable, IDeleteApiCommandMutationResult + public partial class UnpublishClientResult : global::System.IEquatable, IUnpublishClientResult { - public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById deleteApiById) + public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient unpublishClient) { - DeleteApiById = deleteApiById; + UnpublishClient = unpublishClient; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById DeleteApiById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient UnpublishClient { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutationResult? other) + public virtual global::System.Boolean Equals(UnpublishClientResult? other) { if (ReferenceEquals(null, other)) { @@ -6352,7 +6468,7 @@ public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie return false; } - return (DeleteApiById.Equals(other.DeleteApiById)); + return (UnpublishClient.Equals(other.UnpublishClient)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6372,7 +6488,7 @@ public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie return false; } - return Equals((DeleteApiCommandMutationResult)obj); + return Equals((UnpublishClientResult)obj); } public override global::System.Int32 GetHashCode() @@ -6380,7 +6496,7 @@ public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie unchecked { int hash = 5; - hash ^= 397 * DeleteApiById.GetHashCode(); + hash ^= 397 * UnpublishClient.GetHashCode(); return hash; } } @@ -6388,18 +6504,18 @@ public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Clie // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload + public partial class UnpublishClient_UnpublishClient_UnpublishClientPayload : global::System.IEquatable, IUnpublishClient_UnpublishClient_UnpublishClientPayload { - public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) + public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) { - Api = api; + ClientVersion = clientVersion; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? ClientVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_UnpublishClientPayload? other) { if (ReferenceEquals(null, other)) { @@ -6416,7 +6532,7 @@ public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::Chill return false; } - return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((ClientVersion is null && other.ClientVersion is null) || ClientVersion != null && ClientVersion.Equals(other.ClientVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6436,7 +6552,7 @@ public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::Chill return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload)obj); + return Equals((UnpublishClient_UnpublishClient_UnpublishClientPayload)obj); } public override global::System.Int32 GetHashCode() @@ -6444,9 +6560,9 @@ public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::Chill unchecked { int hash = 5; - if (Api != null) + if (ClientVersion != null) { - hash ^= 397 * Api.GetHashCode(); + hash ^= 397 * ClientVersion.GetHashCode(); } if (Errors != null) @@ -6464,24 +6580,18 @@ public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::Chill // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Api_Api : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Api + public partial class UnpublishClient_UnpublishClient_ClientVersion_ClientVersion : global::System.IEquatable, IUnpublishClient_UnpublishClient_ClientVersion_ClientVersion { - public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name, global::System.String id, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? client) { - Name = name; Id = id; - Path = path; - Workspace = workspace; - Settings = settings; + Client = client; } - public global::System.String Name { get; } public global::System.String Id { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? Client { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Api? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_ClientVersion_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -6498,7 +6608,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (Id.Equals(other.Id)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6518,7 +6628,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Api)obj); + return Equals((UnpublishClient_UnpublishClient_ClientVersion_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -6526,19 +6636,12 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); hash ^= 397 * Id.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - if (Workspace != null) + if (Client != null) { - hash ^= 397 * Workspace.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); } - hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -6546,16 +6649,23 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError + public partial class UnpublishClient_UnpublishClient_Errors_StageNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_StageNotFoundError { - public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::System.String message) + public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { + this.__typename = __typename; Message = message; + Name = name; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -6572,7 +6682,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::Sy return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6592,7 +6702,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::Sy return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError)obj); + return Equals((UnpublishClient_UnpublishClient_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -6600,7 +6710,9 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::Sy unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -6608,16 +6720,18 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation + public partial class UnpublishClient_UnpublishClient_Errors_ClientNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ClientNotFoundError { - public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(global::System.String message) + public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) { Message = message; + ClientId = clientId; } public global::System.String Message { get; } + public global::System.String ClientId { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ClientNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -6634,7 +6748,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(globa return false; } - return (Message.Equals(other.Message)); + return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6654,7 +6768,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(globa return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation)obj); + return Equals((UnpublishClient_UnpublishClient_Errors_ClientNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -6663,6 +6777,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(globa { int hash = 5; hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -6670,16 +6785,21 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(globa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError + public partial class UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_UnauthorizedOperation { - public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(global::System.String message) + public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -6696,7 +6816,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(glob return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6716,7 +6836,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(glob return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError)obj); + return Equals((UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -6724,6 +6844,7 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(glob unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -6732,18 +6853,20 @@ public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(glob // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace + public partial class UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError { - public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::System.String id, global::System.String name) + public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) { - Id = id; - Name = name; + Tag = tag; + Message = message; + ClientId = clientId; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.String Tag { get; } + public global::System.String Message { get; } + public global::System.String ClientId { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -6760,7 +6883,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::Sy return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6780,7 +6903,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::Sy return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace)obj); + return Equals((UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -6788,8 +6911,9 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::Sy unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -6797,16 +6921,21 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings + public partial class UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ConcurrentOperationError { - public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) + public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { - SchemaRegistry = schemaRegistry; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -6823,7 +6952,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::C return false; } - return (SchemaRegistry.Equals(other.SchemaRegistry)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6843,7 +6972,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::C return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings)obj); + return Equals((UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -6851,7 +6980,8 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::C unchecked { int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -6859,18 +6989,16 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings + public partial class UnpublishClient_UnpublishClient_ClientVersion_Client_Client : global::System.IEquatable, IUnpublishClient_UnpublishClient_ClientVersion_Client_Client { - public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::System.String name) { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + Name = name; } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings? other) + public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_ClientVersion_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -6887,7 +7015,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_Schema return false; } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -6907,7 +7035,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_Schema return false; } - return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + return Equals((UnpublishClient_UnpublishClient_ClientVersion_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -6915,8 +7043,7 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_Schema unchecked { int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -6924,114 +7051,126 @@ public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_Schema // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutationResult + public partial interface IUnpublishClientResult { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById DeleteApiById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient UnpublishClient { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById + public partial interface IUnpublishClient_UnpublishClient { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? ClientVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload : IDeleteApiCommandMutation_DeleteApiById + public partial interface IUnpublishClient_UnpublishClient_UnpublishClientPayload : IUnpublishClient_UnpublishClient { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api : IApiDetailPrompt_Api + public partial interface IUnpublishClient_UnpublishClient_ClientVersion { + public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? Client { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Api : IDeleteApiCommandMutation_DeleteApiById_Api + public partial interface IUnpublishClient_UnpublishClient_ClientVersion_ClientVersion : IUnpublishClient_UnpublishClient_ClientVersion { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors + public partial interface IUnpublishClient_UnpublishClient_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError : IDeleteApiCommandMutation_DeleteApiById_Errors, IError + public partial interface IStageNotFoundError : IError { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation : IDeleteApiCommandMutation_DeleteApiById_Errors, IError + public partial interface IUnpublishClient_UnpublishClient_Errors_StageNotFoundError : IUnpublishClient_UnpublishClient_Errors, IStageNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError : IDeleteApiCommandMutation_DeleteApiById_Errors, IError + public partial interface IClientNotFoundError : IError { + public global::System.String ClientId { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Workspace + public partial interface IUnpublishClient_UnpublishClient_Errors_ClientNotFoundError : IUnpublishClient_UnpublishClient_Errors, IClientNotFoundError { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace : IDeleteApiCommandMutation_DeleteApiById_Api_Workspace + public partial interface IUnpublishClient_UnpublishClient_Errors_UnauthorizedOperation : IUnpublishClient_UnpublishClient_Errors, IUnauthorizedOperation { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings + public partial interface IClientVersionNotFoundError : IError { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + public global::System.String Tag { get; } + public global::System.String ClientId { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings : IDeleteApiCommandMutation_DeleteApiById_Api_Settings + public partial interface IUnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError : IUnpublishClient_UnpublishClient_Errors, IClientVersionNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry + public partial interface IUnpublishClient_UnpublishClient_Errors_ConcurrentOperationError : IUnpublishClient_UnpublishClient_Errors, IConcurrentOperationError { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings : IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry + public partial interface IUnpublishClient_UnpublishClient_ClientVersion_Client + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUnpublishClient_UnpublishClient_ClientVersion_Client_Client : IUnpublishClient_UnpublishClient_ClientVersion_Client { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryResult : global::System.IEquatable, IListApiCommandQueryResult + public partial class UploadClientResult : global::System.IEquatable, IUploadClientResult { - public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? workspaceById) + public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient uploadClient) { - WorkspaceById = workspaceById; + UploadClient = uploadClient; } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? WorkspaceById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient UploadClient { get; } - public virtual global::System.Boolean Equals(ListApiCommandQueryResult? other) + public virtual global::System.Boolean Equals(UploadClientResult? other) { if (ReferenceEquals(null, other)) { @@ -7048,7 +7187,7 @@ public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IL return false; } - return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); + return (UploadClient.Equals(other.UploadClient)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7068,7 +7207,7 @@ public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IL return false; } - return Equals((ListApiCommandQueryResult)obj); + return Equals((UploadClientResult)obj); } public override global::System.Int32 GetHashCode() @@ -7076,11 +7215,7 @@ public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IL unchecked { int hash = 5; - if (WorkspaceById != null) - { - hash ^= 397 * WorkspaceById.GetHashCode(); - } - + hash ^= 397 * UploadClient.GetHashCode(); return hash; } } @@ -7088,16 +7223,18 @@ public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IL // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Workspace + public partial class UploadClient_UploadClient_UploadClientPayload : global::System.IEquatable, IUploadClient_UploadClient_UploadClientPayload { - public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? apis) + public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) { - Apis = apis; + ClientVersion = clientVersion; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? Apis { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? ClientVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Workspace? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_UploadClientPayload? other) { if (ReferenceEquals(null, other)) { @@ -7114,7 +7251,7 @@ public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Com return false; } - return (((Apis is null && other.Apis is null) || Apis != null && Apis.Equals(other.Apis))); + return (((ClientVersion is null && other.ClientVersion is null) || ClientVersion != null && ClientVersion.Equals(other.ClientVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7134,7 +7271,7 @@ public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Com return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Workspace)obj); + return Equals((UploadClient_UploadClient_UploadClientPayload)obj); } public override global::System.Int32 GetHashCode() @@ -7142,9 +7279,17 @@ public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Com unchecked { int hash = 5; - if (Apis != null) + if (ClientVersion != null) { - hash ^= 397 * Apis.GetHashCode(); + hash ^= 397 * ClientVersion.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -7153,28 +7298,17 @@ public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Com } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_ApisConnection + public partial class UploadClient_UploadClient_ClientVersion_ClientVersion : global::System.IEquatable, IUploadClient_UploadClient_ClientVersion_ClientVersion { - public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo pageInfo) + public UploadClient_UploadClient_ClientVersion_ClientVersion(global::System.String id) { - Edges = edges; - PageInfo = pageInfo; + Id = id; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_ApisConnection? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_ClientVersion_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -7191,7 +7325,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7211,7 +7345,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Coll return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_ApisConnection)obj); + return Equals((UploadClient_UploadClient_ClientVersion_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -7219,43 +7353,26 @@ public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Coll unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge + public partial class UploadClient_UploadClient_Errors_ClientNotFoundError : global::System.IEquatable, IUploadClient_UploadClient_Errors_ClientNotFoundError { - public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node node) + public UploadClient_UploadClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) { - Cursor = cursor; - Node = node; + Message = message; + ClientId = clientId; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node Node { get; } + public global::System.String Message { get; } + public global::System.String ClientId { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_ClientNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -7272,7 +7389,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Stri return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7292,7 +7409,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Stri return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge)obj); + return Equals((UploadClient_UploadClient_Errors_ClientNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -7300,46 +7417,30 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo + public partial class UploadClient_UploadClient_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadClient_UploadClient_Errors_ConcurrentOperationError { - public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Message = message; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -7356,7 +7457,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.B return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7376,7 +7477,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.B return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo)obj); + return Equals((UploadClient_UploadClient_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -7384,18 +7485,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.B unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -7403,24 +7494,16 @@ public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.B // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api + public partial class UploadClient_UploadClient_Errors_InvalidPersistedQueryError : global::System.IEquatable, IUploadClient_UploadClient_Errors_InvalidPersistedQueryError { - public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::System.String message) { - Id = id; - Name = name; - Path = path; - Workspace = workspace; - Settings = settings; + Message = message; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_InvalidPersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -7437,7 +7520,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Stri return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7457,7 +7540,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Stri return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api)obj); + return Equals((UploadClient_UploadClient_Errors_InvalidPersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -7465,19 +7548,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - - hash ^= 397 * Settings.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -7485,18 +7556,21 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Stri // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace + public partial class UploadClient_UploadClient_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadClient_UploadClient_Errors_UnauthorizedOperation { - public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) + public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { - Id = id; - Name = name; + this.__typename = __typename; + Message = message; } - public global::System.String Id { get; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -7513,7 +7587,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(glo return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7533,7 +7607,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(glo return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace)obj); + return Equals((UploadClient_UploadClient_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -7541,8 +7615,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(glo unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -7550,16 +7624,21 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings + public partial class UploadClient_UploadClient_Errors_DuplicatedTagError : global::System.IEquatable, IUploadClient_UploadClient_Errors_DuplicatedTagError { - public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) + public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) { - SchemaRegistry = schemaRegistry; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_DuplicatedTagError? other) { if (ReferenceEquals(null, other)) { @@ -7576,7 +7655,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(gl return false; } - return (SchemaRegistry.Equals(other.SchemaRegistry)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7596,7 +7675,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(gl return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings)obj); + return Equals((UploadClient_UploadClient_Errors_DuplicatedTagError)obj); } public override global::System.Int32 GetHashCode() @@ -7604,7 +7683,8 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(gl unchecked { int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -7612,18 +7692,16 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(gl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings + public partial class UploadClient_UploadClient_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IUploadClient_UploadClient_Errors_InvalidSourceMetadataInputError { - public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + public UploadClient_UploadClient_Errors_InvalidSourceMetadataInputError(global::System.String message) { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + Message = message; } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) + public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -7640,7 +7718,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry return false; } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7660,7 +7738,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry return false; } - return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + return Equals((UploadClient_UploadClient_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -7668,8 +7746,7 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry unchecked { int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -7677,174 +7754,92 @@ public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? WorkspaceById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById - { - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? Apis { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Workspace : IListApiCommandQuery_WorkspaceById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_ApisConnection : IListApiCommandQuery_WorkspaceById_Apis - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommand_ApiEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges : IListApiCommand_ApiEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge : IListApiCommandQuery_WorkspaceById_Apis_Edges + public partial interface IUploadClientResult { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient UploadClient { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_PageInfo : IPageInfo + public partial interface IUploadClient_UploadClient { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? ClientVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo : IListApiCommandQuery_WorkspaceById_Apis_PageInfo + public partial interface IUploadClient_UploadClient_UploadClientPayload : IUploadClient_UploadClient { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommand_Api : IApiDetailPrompt_Api + public partial interface IUploadClient_UploadClient_ClientVersion { + public global::System.String Id { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node : IListApiCommand_Api + public partial interface IUploadClient_UploadClient_ClientVersion_ClientVersion : IUploadClient_UploadClient_ClientVersion { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node + public partial interface IUploadClient_UploadClient_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace + public partial interface IUploadClient_UploadClient_Errors_ClientNotFoundError : IUploadClient_UploadClient_Errors, IClientNotFoundError { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace + public partial interface IUploadClient_UploadClient_Errors_ConcurrentOperationError : IUploadClient_UploadClient_Errors, IConcurrentOperationError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings + public partial interface IUploadClient_UploadClient_Errors_InvalidPersistedQueryError : IUploadClient_UploadClient_Errors, IError { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings + public partial interface IUploadClient_UploadClient_Errors_UnauthorizedOperation : IUploadClient_UploadClient_Errors, IUnauthorizedOperation { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + public partial interface IUploadClient_UploadClient_Errors_DuplicatedTagError : IUploadClient_UploadClient_Errors, IDuplicatedTagError { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + public partial interface IUploadClient_UploadClient_Errors_InvalidSourceMetadataInputError : IUploadClient_UploadClient_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationResult : global::System.IEquatable, ISetApiSettingsCommandMutationResult + public partial class ValidateClientVersionResult : global::System.IEquatable, IValidateClientVersionResult { - public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings updateApiSettings) + public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient validateClient) { - UpdateApiSettings = updateApiSettings; + ValidateClient = validateClient; } - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings UpdateApiSettings { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient ValidateClient { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutationResult? other) + public virtual global::System.Boolean Equals(ValidateClientVersionResult? other) { if (ReferenceEquals(null, other)) { @@ -7861,7 +7856,7 @@ public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine return false; } - return (UpdateApiSettings.Equals(other.UpdateApiSettings)); + return (ValidateClient.Equals(other.ValidateClient)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7881,7 +7876,7 @@ public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine return false; } - return Equals((SetApiSettingsCommandMutationResult)obj); + return Equals((ValidateClientVersionResult)obj); } public override global::System.Int32 GetHashCode() @@ -7889,7 +7884,7 @@ public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - hash ^= 397 * UpdateApiSettings.GetHashCode(); + hash ^= 397 * ValidateClient.GetHashCode(); return hash; } } @@ -7897,18 +7892,18 @@ public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload + public partial class ValidateClientVersion_ValidateClient_ValidateClientPayload : global::System.IEquatable, IValidateClientVersion_ValidateClient_ValidateClientPayload { - public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) + public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { - Api = api; + Id = id; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload? other) + public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_ValidateClientPayload? other) { if (ReferenceEquals(null, other)) { @@ -7925,7 +7920,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload( return false; } - return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -7945,7 +7940,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload( return false; } - return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload)obj); + return Equals((ValidateClientVersion_ValidateClient_ValidateClientPayload)obj); } public override global::System.Int32 GetHashCode() @@ -7953,9 +7948,9 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload( unchecked { int hash = 5; - if (Api != null) + if (Id != null) { - hash ^= 397 * Api.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); } if (Errors != null) @@ -7973,24 +7968,23 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Api + public partial class ValidateClientVersion_ValidateClient_Errors_StageNotFoundError : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_StageNotFoundError { - public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { + this.__typename = __typename; + Message = message; Name = name; - Path = path; - Id = id; - Workspace = workspace; - Settings = settings; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api? other) + public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -8007,7 +8001,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.St return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && Id.Equals(other.Id) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8027,7 +8021,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.St return false; } - return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api)obj); + return Equals((ValidateClientVersion_ValidateClient_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -8035,19 +8029,9 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.St unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - hash ^= 397 * Id.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - - hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -8055,23 +8039,18 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError + public partial class ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_ClientNotFoundError { - public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) { - this.__typename = __typename; Message = message; - ApiId = apiId; + ClientId = clientId; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::System.String ClientId { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -8088,7 +8067,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(g return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8108,7 +8087,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(g return false; } - return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError)obj); + return Equals((ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -8116,9 +8095,8 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(g unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -8126,9 +8104,9 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(g // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation + public partial class ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation { - public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; @@ -8140,7 +8118,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperat public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -8177,7 +8155,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperat return false; } - return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation)obj); + return Equals((ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -8194,145 +8172,16 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperat // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace - { - public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace(global::System.String id, global::System.String name) - { - Id = id; - Name = name; - } - - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Id.Equals(other.Id)) && Name.Equals(other.Name); - } - - 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((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings - { - public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) - { - SchemaRegistry = schemaRegistry; - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } - - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (SchemaRegistry.Equals(other.SchemaRegistry)); - } - - 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((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings + public partial class ValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError { - public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + public ValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError(global::System.String message) { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + Message = message; } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings? other) + public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -8349,7 +8198,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegist return false; } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8369,7 +8218,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegist return false; } - return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + return Equals((ValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -8377,8 +8226,7 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegist unchecked { int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -8386,133 +8234,67 @@ public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegist // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings UpdateApiSettings { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings - { - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload : ISetApiSettingsCommandMutation_UpdateApiSettings - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPrompt_Api : IApiDetailPrompt_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_Api : ISelectApiPrompt_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api : ISetApiSettingsCommandMutation_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Api : ISetApiSettingsCommandMutation_UpdateApiSettings_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError : ISetApiSettingsCommandMutation_UpdateApiSettings_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnauthorizedOperation : IError + public partial interface IValidateClientVersionResult { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient ValidateClient { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation : ISetApiSettingsCommandMutation_UpdateApiSettings_Errors, IUnauthorizedOperation + public partial interface IValidateClientVersion_ValidateClient { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace + public partial interface IValidateClientVersion_ValidateClient_ValidateClientPayload : IValidateClientVersion_ValidateClient { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace + public partial interface IValidateClientVersion_ValidateClient_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings + public partial interface IValidateClientVersion_ValidateClient_Errors_StageNotFoundError : IValidateClientVersion_ValidateClient_Errors, IStageNotFoundError { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings + public partial interface IValidateClientVersion_ValidateClient_Errors_ClientNotFoundError : IValidateClientVersion_ValidateClient_Errors, IClientNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry + public partial interface IValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation : IValidateClientVersion_ValidateClient_Errors, IUnauthorizedOperation { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry + public partial interface IValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError : IValidateClientVersion_ValidateClient_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryResult : global::System.IEquatable, IShowApiCommandQueryResult + public partial class OnClientVersionValidationUpdatedResult : global::System.IEquatable, IOnClientVersionValidationUpdatedResult { - public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? node) + public OnClientVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate onClientVersionValidationUpdate) { - Node = node; + OnClientVersionValidationUpdate = onClientVersionValidationUpdate; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate OnClientVersionValidationUpdate { get; } - public virtual global::System.Boolean Equals(ShowApiCommandQueryResult? other) + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdatedResult? other) { if (ReferenceEquals(null, other)) { @@ -8529,7 +8311,7 @@ public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IS return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (OnClientVersionValidationUpdate.Equals(other.OnClientVersionValidationUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8549,7 +8331,7 @@ public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IS return false; } - return Equals((ShowApiCommandQueryResult)obj); + return Equals((OnClientVersionValidationUpdatedResult)obj); } public override global::System.Int32 GetHashCode() @@ -8557,11 +8339,7 @@ public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IS unchecked { int hash = 5; - if (Node != null) - { - hash ^= 397 * Node.GetHashCode(); - } - + hash ^= 397 * OnClientVersionValidationUpdate.GetHashCode(); return hash; } } @@ -8569,24 +8347,23 @@ public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IS // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Api : global::System.IEquatable, IShowApiCommandQuery_Node_Api + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed { - public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { - Id = id; - Name = name; - Path = path; - Workspace = workspace; - Settings = settings; + this.__typename = __typename; + State = state; + Errors = errors; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -8603,7 +8380,7 @@ public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.Str return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8623,7 +8400,7 @@ public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.Str return false; } - return Equals((ShowApiCommandQuery_Node_Api)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -8631,19 +8408,13 @@ public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.Str unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - if (Workspace != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Workspace.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } - hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -8651,13 +8422,21 @@ public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.Str // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowApiCommandQuery_Node_ApiDocument + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess { - public ShowApiCommandQuery_Node_ApiDocument() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ApiDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess? other) { if (ReferenceEquals(null, other)) { @@ -8674,7 +8453,7 @@ public ShowApiCommandQuery_Node_ApiDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8694,7 +8473,7 @@ public ShowApiCommandQuery_Node_ApiDocument() return false; } - return Equals((ShowApiCommandQuery_Node_ApiDocument)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -8702,6 +8481,8 @@ public ShowApiCommandQuery_Node_ApiDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -8709,13 +8490,21 @@ public ShowApiCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_ApiKey : global::System.IEquatable, IShowApiCommandQuery_Node_ApiKey + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress { - public ShowApiCommandQuery_Node_ApiKey() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ApiKey? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -8732,7 +8521,7 @@ public ShowApiCommandQuery_Node_ApiKey() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8752,7 +8541,7 @@ public ShowApiCommandQuery_Node_ApiKey() return false; } - return Equals((ShowApiCommandQuery_Node_ApiKey)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -8760,6 +8549,8 @@ public ShowApiCommandQuery_Node_ApiKey() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -8767,13 +8558,21 @@ public ShowApiCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Client : global::System.IEquatable, IShowApiCommandQuery_Node_Client + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress { - public ShowApiCommandQuery_Node_Client() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Client? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -8790,7 +8589,7 @@ public ShowApiCommandQuery_Node_Client() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8810,7 +8609,7 @@ public ShowApiCommandQuery_Node_Client() return false; } - return Equals((ShowApiCommandQuery_Node_Client)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -8818,6 +8617,8 @@ public ShowApiCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -8825,13 +8626,20 @@ public ShowApiCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_ClientChangeLog + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError { - public ShowApiCommandQuery_Node_ClientChangeLog() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { + Message = message; + Client = client; + Queries = queries; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientChangeLog? other) + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -8848,7 +8656,7 @@ public ShowApiCommandQuery_Node_ClientChangeLog() return false; } - return true; + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8868,7 +8676,7 @@ public ShowApiCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_ClientChangeLog)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -8876,6 +8684,17 @@ public ShowApiCommandQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -8883,13 +8702,21 @@ public ShowApiCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_ClientDeployment + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError { - public ShowApiCommandQuery_Node_ClientDeployment() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -8906,7 +8733,7 @@ public ShowApiCommandQuery_Node_ClientDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -8926,7 +8753,7 @@ public ShowApiCommandQuery_Node_ClientDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_ClientDeployment)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -8934,6 +8761,8 @@ public ShowApiCommandQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -8941,13 +8770,13 @@ public ShowApiCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowApiCommandQuery_Node_ClientVersion + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError { - public ShowApiCommandQuery_Node_ClientVersion() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError() { } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -8984,7 +8813,7 @@ public ShowApiCommandQuery_Node_ClientVersion() return false; } - return Equals((ShowApiCommandQuery_Node_ClientVersion)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -8999,13 +8828,21 @@ public ShowApiCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowApiCommandQuery_Node_CoordinateClientUsageMetrics + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError { - public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_CoordinateClientUsageMetrics? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -9022,7 +8859,7 @@ public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9042,7 +8879,7 @@ public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ShowApiCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -9050,6 +8887,8 @@ public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -9057,13 +8896,18 @@ public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Environment : global::System.IEquatable, IShowApiCommandQuery_Node_Environment + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client { - public ShowApiCommandQuery_Node_Environment() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Environment? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -9080,7 +8924,7 @@ public ShowApiCommandQuery_Node_Environment() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9100,7 +8944,7 @@ public ShowApiCommandQuery_Node_Environment() return false; } - return Equals((ShowApiCommandQuery_Node_Environment)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -9108,6 +8952,8 @@ public ShowApiCommandQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -9115,13 +8961,22 @@ public ShowApiCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_FusionConfigurationChangeLog + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed { - public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_FusionConfigurationChangeLog? other) + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -9138,7 +8993,7 @@ public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9158,7 +9013,7 @@ public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -9166,6 +9021,18 @@ public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -9173,13 +9040,22 @@ public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_FusionConfigurationDeployment + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError { - public ShowApiCommandQuery_Node_FusionConfigurationDeployment() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { + Message = message; + Code = code; + Path = path; + Locations = locations; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_FusionConfigurationDeployment? other) + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -9196,7 +9072,7 @@ public ShowApiCommandQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9216,7 +9092,7 @@ public ShowApiCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -9224,6 +9100,25 @@ public ShowApiCommandQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -9231,13 +9126,18 @@ public ShowApiCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { + Column = column; + Line = line; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -9254,7 +9154,7 @@ public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return true; + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9274,7 +9174,7 @@ public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -9282,78 +9182,213 @@ public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLDirectiveDefinition + public partial interface IOnClientVersionValidationUpdatedResult { - public ShowApiCommandQuery_Node_GraphQLDirectiveDefinition() - { - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate OnClientVersionValidationUpdate { get; } + } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLDirectiveDefinition? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientVersionValidationFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationFailed + { + } - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientVersionValidationSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationSuccess + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOperationInProgress + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IOperationInProgress + { + } - return Equals((ShowApiCommandQuery_Node_GraphQLDirectiveDefinition)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidationInProgress + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IValidationInProgress + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPersistedQueryValidationError + { + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IPersistedQueryValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IProcessingTimeoutError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IProcessingTimeoutError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUnexpectedProcessingError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IUnexpectedProcessingError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class DeleteClientByIdCommandMutationResult : global::System.IEquatable, IDeleteClientByIdCommandMutationResult { - public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() + public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById deleteClientById) { + DeleteClientById = deleteClientById; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById DeleteClientById { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -9370,7 +9405,7 @@ public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (DeleteClientById.Equals(other.DeleteClientById)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9390,7 +9425,7 @@ public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((DeleteClientByIdCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -9398,6 +9433,7 @@ public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * DeleteClientById.GetHashCode(); return hash; } } @@ -9405,13 +9441,18 @@ public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLEnumValueDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload { - public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) { + Client = client; + Errors = errors; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLEnumValueDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload? other) { if (ReferenceEquals(null, other)) { @@ -9428,7 +9469,7 @@ public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9448,7 +9489,7 @@ public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload)obj); } public override global::System.Int32 GetHashCode() @@ -9456,6 +9497,19 @@ public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -9463,13 +9517,22 @@ public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Client : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Client { - public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? api, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? versions) { + Name = name; + Id = id; + Api = api; + Versions = versions; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public global::System.String Name { get; } + public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -9486,7 +9549,7 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9506,7 +9569,7 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -9514,6 +9577,18 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + if (Api != null) + { + hash ^= 397 * Api.GetHashCode(); + } + + if (Versions != null) + { + hash ^= 397 * Versions.GetHashCode(); + } + return hash; } } @@ -9521,13 +9596,18 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError { - public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) { + Message = message; + ClientId = clientId; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + public global::System.String Message { get; } + public global::System.String ClientId { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -9544,7 +9624,7 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9564,7 +9644,7 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -9572,6 +9652,8 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -9579,13 +9661,21 @@ public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation { - public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + 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(DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -9602,7 +9692,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return true; + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9622,7 +9712,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -9630,6 +9720,8 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -9637,13 +9729,18 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api { - public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) { + Name = name; + Path = path; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -9660,7 +9757,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9680,7 +9777,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -9688,20 +9785,40 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection { - public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo pageInfo) { + Edges = edges; + PageInfo = pageInfo; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection? other) { if (ReferenceEquals(null, other)) { @@ -9718,7 +9835,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9738,7 +9855,7 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection)obj); } public override global::System.Int32 GetHashCode() @@ -9746,20 +9863,43 @@ public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge { - public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) { + Cursor = cursor; + Node = node; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge? other) { if (ReferenceEquals(null, other)) { @@ -9776,7 +9916,7 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return true; + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9796,7 +9936,7 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge)obj); } public override global::System.Int32 GetHashCode() @@ -9804,20 +9944,36 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo { - public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) { + HasNextPage = hasNextPage; + EndCursor = endCursor; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -9834,7 +9990,7 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9854,7 +10010,7 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -9862,6 +10018,12 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + return hash; } } @@ -9869,13 +10031,22 @@ public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion { - public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) { + Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition? other) + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -9892,7 +10063,7 @@ public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9912,7 +10083,7 @@ public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -9920,6 +10091,14 @@ public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) + { + hash ^= 397 * PublishedTo_elm.GetHashCode(); + } + return hash; } } @@ -9927,13 +10106,16 @@ public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion { - public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) { + Stage = stage; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -9950,7 +10132,7 @@ public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -9970,7 +10152,7 @@ public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -9978,6 +10160,11 @@ public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + if (Stage != null) + { + hash ^= 397 * Stage.GetHashCode(); + } + return hash; } } @@ -9985,13 +10172,16 @@ public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Group : global::System.IEquatable, IShowApiCommandQuery_Node_Group + public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage { - public ShowApiCommandQuery_Node_Group() + public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) { + Name = name; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Group? other) + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -10008,7 +10198,7 @@ public ShowApiCommandQuery_Node_Group() return false; } - return true; + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10028,7 +10218,7 @@ public ShowApiCommandQuery_Node_Group() return false; } - return Equals((ShowApiCommandQuery_Node_Group)obj); + return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -10036,37 +10226,224 @@ public ShowApiCommandQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollection + public partial interface IDeleteClientByIdCommandMutationResult { - public ShowApiCommandQuery_Node_McpFeatureCollection() - { - } - - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById DeleteClientById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload : IDeleteClientByIdCommandMutation_DeleteClientById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_Client : IClientDetailPrompt_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client : IDeleteClientByIdCommandMutation_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Client : IDeleteClientByIdCommandMutation_DeleteClientById_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError : IDeleteClientByIdCommandMutation_DeleteClientById_Errors, IClientNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation : IDeleteClientByIdCommandMutation_DeleteClientById_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api + { + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges : IClientDetailPrompt_ClientVersionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo + { + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node + { + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishClientVersionResult : global::System.IEquatable, IPublishClientVersionResult + { + public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient publishClient) + { + PublishClient = publishClient; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient PublishClient { get; } + + public virtual global::System.Boolean Equals(PublishClientVersionResult? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } if (other.GetType() != GetType()) { return false; } - return true; + return (PublishClient.Equals(other.PublishClient)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10086,7 +10463,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ShowApiCommandQuery_Node_McpFeatureCollection)obj); + return Equals((PublishClientVersionResult)obj); } public override global::System.Int32 GetHashCode() @@ -10094,6 +10471,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * PublishClient.GetHashCode(); return hash; } } @@ -10101,13 +10479,18 @@ public ShowApiCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class PublishClientVersion_PublishClient_PublishClientPayload : global::System.IEquatable, IPublishClientVersion_PublishClient_PublishClientPayload { - public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() + public PublishClientVersion_PublishClient_PublishClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { + Id = id; + Errors = errors; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog? other) + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_PublishClientPayload? other) { if (ReferenceEquals(null, other)) { @@ -10124,7 +10507,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10144,7 +10527,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((PublishClientVersion_PublishClient_PublishClientPayload)obj); } public override global::System.Int32 GetHashCode() @@ -10152,6 +10535,19 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + if (Id != null) + { + hash ^= 397 * Id.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -10159,13 +10555,23 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionDeployment + public partial class PublishClientVersion_PublishClient_Errors_StageNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_StageNotFoundError { - public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() + public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { + this.__typename = __typename; + Message = message; + Name = name; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -10182,7 +10588,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10202,7 +10608,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((PublishClientVersion_PublishClient_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -10210,6 +10616,9 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -10217,13 +10626,18 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionVersion + public partial class PublishClientVersion_PublishClient_Errors_ClientNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_ClientNotFoundError { - public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() + public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) { + Message = message; + ClientId = clientId; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionVersion? other) + public global::System.String Message { get; } + public global::System.String ClientId { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_ClientNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -10240,7 +10654,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10260,7 +10674,7 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((PublishClientVersion_PublishClient_Errors_ClientNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -10268,6 +10682,8 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -10275,13 +10691,21 @@ public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollection + public partial class PublishClientVersion_PublishClient_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_UnauthorizedOperation { - public ShowApiCommandQuery_Node_OpenApiCollection() + public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -10298,7 +10722,7 @@ public ShowApiCommandQuery_Node_OpenApiCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10318,7 +10742,7 @@ public ShowApiCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ShowApiCommandQuery_Node_OpenApiCollection)obj); + return Equals((PublishClientVersion_PublishClient_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -10326,6 +10750,8 @@ public ShowApiCommandQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -10333,13 +10759,20 @@ public ShowApiCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionChangeLog + public partial class PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError { - public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() + public PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) { + Tag = tag; + Message = message; + ClientId = clientId; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionChangeLog? other) + public global::System.String Tag { get; } + public global::System.String Message { get; } + public global::System.String ClientId { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -10356,7 +10789,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && ClientId.Equals(other.ClientId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10376,7 +10809,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -10384,6 +10817,9 @@ public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -10391,13 +10827,16 @@ public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionDeployment + public partial class PublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError { - public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() + public PublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionDeployment? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -10414,7 +10853,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10434,7 +10873,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((PublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -10442,20 +10881,81 @@ public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersionResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient PublishClient { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient + { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_PublishClientPayload : IPublishClientVersion_PublishClient + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors_StageNotFoundError : IPublishClientVersion_PublishClient_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors_ClientNotFoundError : IPublishClientVersion_PublishClient_Errors, IClientNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors_UnauthorizedOperation : IPublishClientVersion_PublishClient_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError : IPublishClientVersion_PublishClient_Errors, IClientVersionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError : IPublishClientVersion_PublishClient_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionVersion + public partial class OnClientVersionPublishUpdatedResult : global::System.IEquatable, IOnClientVersionPublishUpdatedResult { - public ShowApiCommandQuery_Node_OpenApiCollectionVersion() + public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate onClientVersionPublishingUpdate) { + OnClientVersionPublishingUpdate = onClientVersionPublishingUpdate; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionVersion? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate OnClientVersionPublishingUpdate { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdatedResult? other) { if (ReferenceEquals(null, other)) { @@ -10472,7 +10972,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (OnClientVersionPublishingUpdate.Equals(other.OnClientVersionPublishingUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10492,7 +10992,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ShowApiCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((OnClientVersionPublishUpdatedResult)obj); } public override global::System.Int32 GetHashCode() @@ -10500,6 +11000,7 @@ public ShowApiCommandQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * OnClientVersionPublishingUpdate.GetHashCode(); return hash; } } @@ -10507,13 +11008,23 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed { - public ShowApiCommandQuery_Node_Organization() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { + this.__typename = __typename; + State = state; + Errors = errors; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Organization? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed? other) { if (ReferenceEquals(null, other)) { @@ -10530,7 +11041,7 @@ public ShowApiCommandQuery_Node_Organization() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10550,7 +11061,7 @@ public ShowApiCommandQuery_Node_Organization() return false; } - return Equals((ShowApiCommandQuery_Node_Organization)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed)obj); } public override global::System.Int32 GetHashCode() @@ -10558,6 +11069,13 @@ public ShowApiCommandQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -10565,13 +11083,21 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess { - public ShowApiCommandQuery_Node_OrganizationMember() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OrganizationMember? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess? other) { if (ReferenceEquals(null, other)) { @@ -10588,7 +11114,7 @@ public ShowApiCommandQuery_Node_OrganizationMember() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10608,7 +11134,7 @@ public ShowApiCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowApiCommandQuery_Node_OrganizationMember)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -10616,6 +11142,8 @@ public ShowApiCommandQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -10623,13 +11151,21 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress { - public ShowApiCommandQuery_Node_SchemaChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -10646,7 +11182,7 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10666,7 +11202,7 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ShowApiCommandQuery_Node_SchemaChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -10674,6 +11210,8 @@ public ShowApiCommandQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -10681,13 +11219,21 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved { - public ShowApiCommandQuery_Node_SchemaDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { + this.__typename = __typename; + State = state; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved? other) { if (ReferenceEquals(null, other)) { @@ -10704,7 +11250,7 @@ public ShowApiCommandQuery_Node_SchemaDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10724,7 +11270,7 @@ public ShowApiCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ShowApiCommandQuery_Node_SchemaDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved)obj); } public override global::System.Int32 GetHashCode() @@ -10732,6 +11278,8 @@ public ShowApiCommandQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -10739,13 +11287,26 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued { - public ShowApiCommandQuery_Node_Stage() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) { + this.__typename = __typename; + Queued = queued; + QueuePosition = queuePosition; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Stage? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued? other) { if (ReferenceEquals(null, other)) { @@ -10762,7 +11323,7 @@ public ShowApiCommandQuery_Node_Stage() return false; } - return true; + return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10782,7 +11343,7 @@ public ShowApiCommandQuery_Node_Stage() return false; } - return Equals((ShowApiCommandQuery_Node_Stage)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued)obj); } public override global::System.Int32 GetHashCode() @@ -10790,6 +11351,9 @@ public ShowApiCommandQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Queued.GetHashCode(); + hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -10797,13 +11361,24 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady { - public ShowApiCommandQuery_Node_User() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) { + this.__typename = __typename; + Ready = ready; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_User? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady? other) { if (ReferenceEquals(null, other)) { @@ -10820,7 +11395,7 @@ public ShowApiCommandQuery_Node_User() return false; } - return true; + return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10840,7 +11415,7 @@ public ShowApiCommandQuery_Node_User() return false; } - return Equals((ShowApiCommandQuery_Node_User)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady)obj); } public override global::System.Int32 GetHashCode() @@ -10848,6 +11423,8 @@ public ShowApiCommandQuery_Node_User() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -10855,13 +11432,23 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval { - public ShowApiCommandQuery_Node_Workspace() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) { + this.__typename = __typename; + State = state; + Deployment = deployment; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval? other) { if (ReferenceEquals(null, other)) { @@ -10878,7 +11465,7 @@ public ShowApiCommandQuery_Node_Workspace() return false; } - return true; + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10898,7 +11485,7 @@ public ShowApiCommandQuery_Node_Workspace() return false; } - return Equals((ShowApiCommandQuery_Node_Workspace)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval)obj); } public override global::System.Int32 GetHashCode() @@ -10906,6 +11493,13 @@ public ShowApiCommandQuery_Node_Workspace() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + if (Deployment != null) + { + hash ^= 397 * Deployment.GetHashCode(); + } + return hash; } } @@ -10913,13 +11507,21 @@ public ShowApiCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowApiCommandQuery_Node_WorkspaceDocument + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError { - public ShowApiCommandQuery_Node_WorkspaceDocument() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_WorkspaceDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -10936,7 +11538,7 @@ public ShowApiCommandQuery_Node_WorkspaceDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -10956,7 +11558,7 @@ public ShowApiCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ShowApiCommandQuery_Node_WorkspaceDocument)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -10964,6 +11566,8 @@ public ShowApiCommandQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -10971,18 +11575,20 @@ public ShowApiCommandQuery_Node_WorkspaceDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace_Workspace + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError { - public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Id = id; - Name = name; + Message = message; + Client = client; + Queries = queries; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -10999,7 +11605,7 @@ public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, gl return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11019,7 +11625,7 @@ public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, gl return false; } - return Equals((ShowApiCommandQuery_Node_Workspace_Workspace)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -11027,8 +11633,17 @@ public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, gl unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -11036,16 +11651,21 @@ public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, gl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Settings_ApiSettings : global::System.IEquatable, IShowApiCommandQuery_Node_Settings_ApiSettings + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError { - public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { - SchemaRegistry = schemaRegistry; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Settings_ApiSettings? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -11062,7 +11682,7 @@ public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.C return false; } - return (SchemaRegistry.Equals(other.SchemaRegistry)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11082,7 +11702,7 @@ public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.C return false; } - return Equals((ShowApiCommandQuery_Node_Settings_ApiSettings)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -11090,7 +11710,8 @@ public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.C unchecked { int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -11098,18 +11719,13 @@ public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError { - public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError() { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } - - public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -11126,7 +11742,7 @@ public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(g return false; } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11146,7 +11762,7 @@ public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(g return false; } - return Equals((ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -11154,331 +11770,28 @@ public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(g unchecked { int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQueryResult - { - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Api : IShowApiCommandQuery_Node, IApiDetailPrompt_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_ApiDocument : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_ApiKey : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Client : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_ClientChangeLog : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_ClientDeployment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_ClientVersion : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_CoordinateClientUsageMetrics : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Environment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_FusionConfigurationChangeLog : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_FusionConfigurationDeployment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLEnumTypeDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLEnumValueDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLScalarTypeDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_GraphQLUnionTypeDefinition : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Group : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_McpFeatureCollection : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionChangeLog : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionDeployment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionVersion : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_OpenApiCollection : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_OpenApiCollectionChangeLog : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_OpenApiCollectionDeployment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_OpenApiCollectionVersion : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Organization : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_OrganizationMember : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_SchemaChangeLog : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_SchemaDeployment : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Stage : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_User : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Workspace : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_WorkspaceDocument : IShowApiCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Workspace_1 - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Workspace_Workspace : IShowApiCommandQuery_Node_Workspace_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Settings - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Settings_ApiSettings : IShowApiCommandQuery_Node_Settings - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Settings_SchemaRegistry - { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings : IShowApiCommandQuery_Node_Settings_SchemaRegistry - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationResult : global::System.IEquatable, ICreateClientCommandMutationResult + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError { - public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient createClient) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { - CreateClient = createClient; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient CreateClient { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutationResult? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -11495,7 +11808,7 @@ public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return (CreateClient.Equals(other.CreateClient)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11515,7 +11828,7 @@ public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((CreateClientCommandMutationResult)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -11523,7 +11836,8 @@ public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - hash ^= 397 * CreateClient.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -11531,18 +11845,16 @@ public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_CreateClientPayload : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_CreateClientPayload + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment { - public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Client = client; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_CreateClientPayload? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -11559,7 +11871,7 @@ public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::Chil return false; } - return (((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11579,7 +11891,7 @@ public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::Chil return false; } - return Equals((CreateClientCommandMutation_CreateClient_CreateClientPayload)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -11587,17 +11899,9 @@ public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::Chil unchecked { int hash = 5; - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - if (Errors != null) + foreach (var Errors_elm in Errors) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -11607,22 +11911,16 @@ public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::Chil // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Client : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Client + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { - public CreateClientCommandMutation_CreateClient_Client_Client(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? api, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? versions) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Name = name; - Id = id; - Api = api; - Versions = versions; + Errors = errors; } - public global::System.String Name { get; } - public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Client? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -11639,7 +11937,7 @@ public CreateClientCommandMutation_CreateClient_Client_Client(global::System.Str return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11659,7 +11957,7 @@ public CreateClientCommandMutation_CreateClient_Client_Client(global::System.Str return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Client)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -11667,16 +11965,9 @@ public CreateClientCommandMutation_CreateClient_Client_Client(global::System.Str unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Versions != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Versions.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -11686,23 +11977,16 @@ public CreateClientCommandMutation_CreateClient_Client_Client(global::System.Str // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment { - public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Message = message; - this.__typename = __typename; - ApiId = apiId; + Errors = errors; } - public global::System.String Message { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String ApiId { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -11719,7 +12003,7 @@ public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global:: return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && ApiId.Equals(other.ApiId); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11739,7 +12023,7 @@ public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global:: return false; } - return Equals((CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -11747,9 +12031,11 @@ public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global:: unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -11757,21 +12043,16 @@ public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global:: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment { - public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Message = message; - this.__typename = __typename; + Errors = errors; } - public global::System.String Message { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -11788,7 +12069,7 @@ public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(glo return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11808,7 +12089,7 @@ public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(glo return false; } - return Equals((CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -11816,8 +12097,11 @@ public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(glo unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -11825,18 +12109,16 @@ 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_Client_Api_Api : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Api_Api + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment { - public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Name = name; - Path = path; + Errors = errors; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Api_Api? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -11853,7 +12135,7 @@ public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.St return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11873,7 +12155,7 @@ public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.St return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Api_Api)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -11881,10 +12163,9 @@ public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.St unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Path_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -11893,28 +12174,19 @@ public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.St } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client { - public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) { - Edges = edges; - PageInfo = pageInfo; + Id = id; + Name = name; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -11931,7 +12203,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionCon return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -11951,7 +12223,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionCon return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -11959,43 +12231,31 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionCon unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed { - public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - Cursor = cursor; - Node = node; + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -12012,7 +12272,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVers return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12032,7 +12292,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVers return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -12040,36 +12300,39 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVers unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError { - public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - HasNextPage = hasNextPage; - EndCursor = endCursor; + Message = message; + Client = client; + Queries = queries; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -12086,7 +12349,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInf return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12106,7 +12369,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInf return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -12114,10 +12377,15 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInf unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + hash ^= 397 * Message.GetHashCode(); + if (Client != null) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); } return hash; @@ -12127,22 +12395,20 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInf // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 { - public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; + Message = message; + Client = client; + Queries = queries; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -12159,7 +12425,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Clien return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12179,7 +12445,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Clien return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -12187,12 +12453,15 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Clien unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) + hash ^= 397 * Message.GetHashCode(); + if (Client != null) { - hash ^= 397 * PublishedTo_elm.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); } return hash; @@ -12202,16 +12471,16 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Clien // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError { - public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Stage = stage; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -12228,7 +12497,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12248,7 +12517,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -12256,9 +12525,9 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi unchecked { int hash = 5; - if (Stage != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -12268,16 +12537,16 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError { - public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Name = name; + Collections = collections; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -12294,7 +12563,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi return false; } - return (Name.Equals(other.Name)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12314,7 +12583,7 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi return false; } - return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -12322,234 +12591,30 @@ public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_Publi unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient CreateClient { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_CreateClientPayload : ICreateClientCommandMutation_CreateClient - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientDetailPrompt_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_Client : IClientDetailPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client : ICreateClientCommandMutation_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Client : ICreateClientCommandMutation_CreateClient_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError : ICreateClientCommandMutation_CreateClient_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation : ICreateClientCommandMutation_CreateClient_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Api - { - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Api_Api : ICreateClientCommandMutation_CreateClient_Client_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection : ICreateClientCommandMutation_CreateClient_Client_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientDetailPrompt_ClientVersionEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo : ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutationResult : global::System.IEquatable, IDeleteClientByIdCommandMutationResult + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError { - public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById deleteClientById) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - DeleteClientById = deleteClientById; + Message = message; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById DeleteClientById { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutationResult? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -12566,7 +12631,7 @@ public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLi return false; } - return (DeleteClientById.Equals(other.DeleteClientById)); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12586,7 +12651,7 @@ public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLi return false; } - return Equals((DeleteClientByIdCommandMutationResult)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -12594,7 +12659,12 @@ public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLi unchecked { int hash = 5; - hash ^= 397 * DeleteClientById.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -12602,18 +12672,23 @@ public DeleteClientByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError { - public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - Client = client; + this.__typename = __typename; + Message = message; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -12630,7 +12705,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload( return false; } - return (((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12650,7 +12725,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload( return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -12658,17 +12733,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload( unchecked { int hash = 5; - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - if (Errors != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -12678,22 +12747,16 @@ public DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Client : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Client + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? api, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? versions) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - Name = name; - Id = id; - Api = api; - Versions = versions; + Collections = collections; } - public global::System.String Name { get; } - public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Client? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -12710,7 +12773,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::Sy return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12730,7 +12793,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::Sy return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Client)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -12738,16 +12801,9 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::Sy unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Versions != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Versions.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -12757,18 +12813,16 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 { - public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - Message = message; - ClientId = clientId; + Collections = collections; } - public global::System.String Message { get; } - public global::System.String ClientId { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -12785,7 +12839,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundErr return false; } - return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12805,7 +12859,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundErr return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -12813,8 +12867,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundErr unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -12822,21 +12879,20 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundErr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 { - public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { Message = message; - this.__typename = __typename; + Client = client; + Queries = queries; } public global::System.String Message { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -12853,7 +12909,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOpera return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12873,7 +12929,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOpera return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -12882,7 +12938,16 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOpera { int hash = 5; hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -12890,18 +12955,16 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOpera // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - Name = name; - Path = path; + Collections = collections; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -12918,7 +12981,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::S return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -12938,7 +13001,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::S return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -12946,10 +13009,9 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::S unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Path_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -12958,28 +13020,17 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api(global::S } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - Edges = edges; - PageInfo = pageInfo; + Collections = collections; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -12996,7 +13047,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVe return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13016,7 +13067,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVe return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -13024,43 +13075,30 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVe unchecked { int hash = 5; - if (Edges != null) + foreach (var Collections_elm in Collections) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Collections_elm.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - Cursor = cursor; - Node = node; + Message = message; + Changes = changes; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) { if (ReferenceEquals(null, other)) { @@ -13077,7 +13115,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Cl return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13097,7 +13135,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Cl return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -13105,36 +13143,34 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Cl unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { - HasNextPage = hasNextPage; - EndCursor = endCursor; + this.__typename = __typename; + Message = message; } /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? EndCursor { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -13151,7 +13187,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13171,7 +13207,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -13179,12 +13215,8 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -13192,22 +13224,27 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; + this.__typename = __typename; + Message = message; + Column = column; + Position = position; + Line = line; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -13224,7 +13261,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13244,7 +13281,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -13252,14 +13289,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) - { - hash ^= 397 * PublishedTo_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -13267,16 +13301,23 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - Stage = stage; + this.__typename = __typename; + Message = message; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -13293,7 +13334,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13313,7 +13354,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -13321,9 +13362,11 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No unchecked { int hash = 5; - if (Stage != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -13333,16 +13376,22 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError { - public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - Name = name; + Message = message; + Code = code; + Path = path; + Locations = locations; } - public global::System.String Name { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -13359,7 +13408,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return (Name.Equals(other.Name)); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13379,7 +13428,7 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No return false; } - return Equals((DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -13387,217 +13436,44 @@ public DeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_No unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById DeleteClientById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload : IDeleteClientByIdCommandMutation_DeleteClientById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_Client : IClientDetailPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client : IDeleteClientByIdCommandMutation_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Client : IDeleteClientByIdCommandMutation_DeleteClientById_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientNotFoundError : IError - { - public global::System.String ClientId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError : IDeleteClientByIdCommandMutation_DeleteClientById_Errors, IClientNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation : IDeleteClientByIdCommandMutation_DeleteClientById_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api - { - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api_Api : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_ClientVersionConnection : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_ClientVersionEdge : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo_PageInfo : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_ClientVersion : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo - { - } + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : IDeleteClientByIdCommandMutation_DeleteClientById_Client_Versions_Edges_Node_PublishedTo_Stage - { + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryResult : global::System.IEquatable, IListClientCommandQueryResult + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client { - public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? node) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) { - Node = node; + Id = id; + Name = name; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? Node { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListClientCommandQueryResult? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -13614,7 +13490,7 @@ public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13634,7 +13510,7 @@ public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return Equals((ListClientCommandQueryResult)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -13642,11 +13518,8 @@ public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client unchecked { int hash = 5; - if (Node != null) - { - hash ^= 397 * Node.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -13654,16 +13527,22 @@ public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Api : global::System.IEquatable, IListClientCommandQuery_Node_Api + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed { - public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? clients) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - Clients = clients; + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? Clients { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -13680,7 +13559,7 @@ public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return (((Clients is null && other.Clients is null) || Clients != null && Clients.Equals(other.Clients))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13700,7 +13579,7 @@ public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return Equals((ListClientCommandQuery_Node_Api)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -13708,9 +13587,16 @@ public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Cli unchecked { int hash = 5; - if (Clients != null) + foreach (var DeployedTags_elm in DeployedTags) { - hash ^= 397 * Clients.GetHashCode(); + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -13720,13 +13606,18 @@ public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Cli // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_ApiDocument : global::System.IEquatable, IListClientCommandQuery_Node_ApiDocument + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection { - public ListClientCommandQuery_Node_ApiDocument() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ApiDocument? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -13743,7 +13634,7 @@ public ListClientCommandQuery_Node_ApiDocument() return false; } - return true; + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13763,7 +13654,7 @@ public ListClientCommandQuery_Node_ApiDocument() return false; } - return Equals((ListClientCommandQuery_Node_ApiDocument)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -13771,6 +13662,16 @@ public ListClientCommandQuery_Node_ApiDocument() unchecked { int hash = 5; + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -13778,13 +13679,18 @@ public ListClientCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_ApiKey : global::System.IEquatable, IListClientCommandQuery_Node_ApiKey + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection { - public ListClientCommandQuery_Node_ApiKey() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { + OpenApiCollection = openApiCollection; + Entities = entities; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ApiKey? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -13801,7 +13707,7 @@ public ListClientCommandQuery_Node_ApiKey() return false; } - return true; + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13821,7 +13727,7 @@ public ListClientCommandQuery_Node_ApiKey() return false; } - return Equals((ListClientCommandQuery_Node_ApiKey)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -13829,6 +13735,16 @@ public ListClientCommandQuery_Node_ApiKey() unchecked { int hash = 5; + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -13836,13 +13752,25 @@ public ListClientCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Client : global::System.IEquatable, IListClientCommandQuery_Node_Client + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange { - public ListClientCommandQuery_Node_Client() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Client? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -13859,7 +13787,7 @@ public ListClientCommandQuery_Node_Client() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13879,7 +13807,7 @@ public ListClientCommandQuery_Node_Client() return false; } - return Equals((ListClientCommandQuery_Node_Client)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -13887,6 +13815,14 @@ public ListClientCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -13894,13 +13830,25 @@ public ListClientCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_ClientChangeLog + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange { - public ListClientCommandQuery_Node_ClientChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -13917,7 +13865,7 @@ public ListClientCommandQuery_Node_ClientChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13937,7 +13885,7 @@ public ListClientCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_ClientChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -13945,6 +13893,14 @@ public ListClientCommandQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -13952,13 +13908,25 @@ public ListClientCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListClientCommandQuery_Node_ClientDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange { - public ListClientCommandQuery_Node_ClientDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -13975,7 +13943,7 @@ public ListClientCommandQuery_Node_ClientDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -13995,7 +13963,7 @@ public ListClientCommandQuery_Node_ClientDeployment() return false; } - return Equals((ListClientCommandQuery_Node_ClientDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14003,6 +13971,14 @@ public ListClientCommandQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14010,13 +13986,25 @@ public ListClientCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_ClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_ClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange { - public ListClientCommandQuery_Node_ClientVersion() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -14033,7 +14021,7 @@ public ListClientCommandQuery_Node_ClientVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14053,7 +14041,7 @@ public ListClientCommandQuery_Node_ClientVersion() return false; } - return Equals((ListClientCommandQuery_Node_ClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14061,6 +14049,14 @@ public ListClientCommandQuery_Node_ClientVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14068,13 +14064,25 @@ public ListClientCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListClientCommandQuery_Node_CoordinateClientUsageMetrics + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange { - public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_CoordinateClientUsageMetrics? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -14091,7 +14099,7 @@ public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14111,7 +14119,7 @@ public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ListClientCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14119,6 +14127,14 @@ public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14126,13 +14142,25 @@ public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Environment : global::System.IEquatable, IListClientCommandQuery_Node_Environment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange { - public ListClientCommandQuery_Node_Environment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Environment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -14149,7 +14177,7 @@ public ListClientCommandQuery_Node_Environment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14169,7 +14197,7 @@ public ListClientCommandQuery_Node_Environment() return false; } - return Equals((ListClientCommandQuery_Node_Environment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14177,6 +14205,14 @@ public ListClientCommandQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14184,13 +14220,23 @@ public ListClientCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_FusionConfigurationChangeLog + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange { - public ListClientCommandQuery_Node_FusionConfigurationChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_FusionConfigurationChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -14207,7 +14253,7 @@ public ListClientCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14227,7 +14273,7 @@ public ListClientCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14235,6 +14281,9 @@ public ListClientCommandQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -14242,13 +14291,21 @@ public ListClientCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListClientCommandQuery_Node_FusionConfigurationDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange { - public ListClientCommandQuery_Node_FusionConfigurationDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { + this.__typename = __typename; + Severity = severity; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_FusionConfigurationDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -14265,7 +14322,7 @@ public ListClientCommandQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14285,7 +14342,7 @@ public ListClientCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ListClientCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14293,6 +14350,8 @@ public ListClientCommandQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -14300,13 +14359,23 @@ public ListClientCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange { - public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -14323,7 +14392,7 @@ public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14343,7 +14412,7 @@ public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14351,6 +14420,9 @@ public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -14358,13 +14430,25 @@ public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLDirectiveDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange { - public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLDirectiveDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -14381,7 +14465,7 @@ public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14401,7 +14485,7 @@ public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -14409,6 +14493,14 @@ public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14416,13 +14508,18 @@ public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError { - public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { + Message = message; + Code = code; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public global::System.String Message { get; } + public global::System.String? Code { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -14439,7 +14536,7 @@ public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14459,7 +14556,7 @@ public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -14467,6 +14564,12 @@ public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -14474,13 +14577,18 @@ public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLEnumValueDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { + Column = column; + Line = line; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLEnumValueDefinition? other) + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -14497,7 +14605,7 @@ public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14517,7 +14625,7 @@ public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -14525,6 +14633,8 @@ public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -14532,13 +14642,18 @@ public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -14555,7 +14670,7 @@ public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14575,7 +14690,7 @@ public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -14583,6 +14698,8 @@ public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -14590,13 +14707,18 @@ public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { + Errors = errors; + Name = name; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -14613,7 +14735,7 @@ public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14633,7 +14755,7 @@ public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -14641,6 +14763,12 @@ public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -14648,13 +14776,18 @@ public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { + Errors = errors; + Name = name; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -14671,7 +14804,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14691,7 +14824,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -14699,6 +14832,12 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() unchecked { int hash = 5; + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -14706,13 +14845,18 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection { - public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -14729,7 +14873,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14749,7 +14893,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -14757,6 +14901,8 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -14764,13 +14910,20 @@ public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -14787,7 +14940,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14807,7 +14960,7 @@ public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -14815,6 +14968,13 @@ public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -14822,13 +14982,18 @@ public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { + Errors = errors; + Name = name; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -14845,7 +15010,7 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14865,7 +15030,7 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -14873,6 +15038,12 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() unchecked { int hash = 5; + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -14880,13 +15051,27 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded { - public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -14903,7 +15088,7 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14923,7 +15108,7 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -14931,6 +15116,11 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -14938,13 +15128,27 @@ public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged { - public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLScalarTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -14961,7 +15165,7 @@ public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -14981,7 +15185,7 @@ public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -14989,6 +15193,15 @@ public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -14996,13 +15209,27 @@ public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved { - public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLUnionTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -15019,7 +15246,7 @@ public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15039,7 +15266,7 @@ public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ListClientCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -15047,6 +15274,11 @@ public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -15054,13 +15286,25 @@ public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Group : global::System.IEquatable, IListClientCommandQuery_Node_Group + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged { - public ListClientCommandQuery_Node_Group() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Group? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -15077,7 +15321,7 @@ public ListClientCommandQuery_Node_Group() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15097,7 +15341,7 @@ public ListClientCommandQuery_Node_Group() return false; } - return Equals((ListClientCommandQuery_Node_Group)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -15105,6 +15349,18 @@ public ListClientCommandQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -15112,13 +15368,23 @@ public ListClientCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded { - public ListClientCommandQuery_Node_McpFeatureCollection() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -15135,7 +15401,7 @@ public ListClientCommandQuery_Node_McpFeatureCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15155,7 +15421,7 @@ public ListClientCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ListClientCommandQuery_Node_McpFeatureCollection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -15163,6 +15429,9 @@ public ListClientCommandQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -15170,13 +15439,23 @@ public ListClientCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved { - public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -15193,7 +15472,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15213,7 +15492,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -15221,6 +15500,9 @@ public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -15228,13 +15510,25 @@ public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 { - public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -15251,7 +15545,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15271,7 +15565,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ListClientCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -15279,6 +15573,18 @@ public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -15286,13 +15592,23 @@ public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded { - public ListClientCommandQuery_Node_McpFeatureCollectionVersion() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -15309,7 +15625,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15329,7 +15645,7 @@ public ListClientCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ListClientCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -15337,6 +15653,9 @@ public ListClientCommandQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -15344,13 +15663,25 @@ public ListClientCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged { - public ListClientCommandQuery_Node_OpenApiCollection() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -15367,7 +15698,7 @@ public ListClientCommandQuery_Node_OpenApiCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15387,7 +15718,7 @@ public ListClientCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ListClientCommandQuery_Node_OpenApiCollection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -15395,6 +15726,14 @@ public ListClientCommandQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -15402,13 +15741,23 @@ public ListClientCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionChangeLog + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved { - public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -15425,7 +15774,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15445,7 +15794,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -15453,6 +15802,9 @@ public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -15460,13 +15812,25 @@ public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 { - public ListClientCommandQuery_Node_OpenApiCollectionDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -15483,7 +15847,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15503,7 +15867,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ListClientCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -15511,6 +15875,18 @@ public ListClientCommandQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -15518,13 +15894,27 @@ public ListClientCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange { - public ListClientCommandQuery_Node_OpenApiCollectionVersion() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -15541,7 +15931,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15561,7 +15951,7 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ListClientCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -15569,6 +15959,11 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -15576,13 +15971,27 @@ public ListClientCommandQuery_Node_OpenApiCollectionVersion() // 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 + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange { - public ListClientCommandQuery_Node_Organization() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Organization? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -15599,7 +16008,7 @@ public ListClientCommandQuery_Node_Organization() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15619,7 +16028,7 @@ public ListClientCommandQuery_Node_Organization() return false; } - return Equals((ListClientCommandQuery_Node_Organization)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -15627,6 +16036,11 @@ public ListClientCommandQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -15634,13 +16048,27 @@ public ListClientCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListClientCommandQuery_Node_OrganizationMember + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged { - public ListClientCommandQuery_Node_OrganizationMember() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OrganizationMember? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -15657,7 +16085,7 @@ public ListClientCommandQuery_Node_OrganizationMember() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15677,7 +16105,7 @@ public ListClientCommandQuery_Node_OrganizationMember() return false; } - return Equals((ListClientCommandQuery_Node_OrganizationMember)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -15685,6 +16113,15 @@ public ListClientCommandQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -15692,13 +16129,25 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 { - public ListClientCommandQuery_Node_SchemaChangeLog() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -15715,7 +16164,7 @@ public ListClientCommandQuery_Node_SchemaChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15735,7 +16184,7 @@ public ListClientCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ListClientCommandQuery_Node_SchemaChangeLog)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -15743,6 +16192,18 @@ public ListClientCommandQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -15750,13 +16211,27 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 { - public ListClientCommandQuery_Node_SchemaDeployment() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -15773,7 +16248,7 @@ public ListClientCommandQuery_Node_SchemaDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15793,7 +16268,7 @@ public ListClientCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ListClientCommandQuery_Node_SchemaDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -15801,6 +16276,11 @@ public ListClientCommandQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -15808,13 +16288,27 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 { - public ListClientCommandQuery_Node_Stage() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Stage? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -15831,7 +16325,7 @@ public ListClientCommandQuery_Node_Stage() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15851,7 +16345,7 @@ public ListClientCommandQuery_Node_Stage() return false; } - return Equals((ListClientCommandQuery_Node_Stage)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -15859,6 +16353,11 @@ public ListClientCommandQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -15866,13 +16365,23 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded { - public ListClientCommandQuery_Node_User() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_User? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -15889,7 +16398,7 @@ public ListClientCommandQuery_Node_User() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15909,7 +16418,7 @@ public ListClientCommandQuery_Node_User() return false; } - return Equals((ListClientCommandQuery_Node_User)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -15917,20 +16426,33 @@ public ListClientCommandQuery_Node_User() unchecked { int hash = 5; - return hash; - } + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); + 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 partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved { - public ListClientCommandQuery_Node_Workspace() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Workspace? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -15947,7 +16469,7 @@ public ListClientCommandQuery_Node_Workspace() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -15967,7 +16489,7 @@ public ListClientCommandQuery_Node_Workspace() return false; } - return Equals((ListClientCommandQuery_Node_Workspace)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -15975,6 +16497,9 @@ public ListClientCommandQuery_Node_Workspace() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -15982,13 +16507,27 @@ 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 OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged { - public ListClientCommandQuery_Node_WorkspaceDocument() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_WorkspaceDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -16005,7 +16544,7 @@ public ListClientCommandQuery_Node_WorkspaceDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16025,7 +16564,7 @@ public ListClientCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ListClientCommandQuery_Node_WorkspaceDocument)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -16033,34 +16572,39 @@ public ListClientCommandQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_ClientsConnection : global::System.IEquatable, IListClientCommandQuery_Node_Clients_ClientsConnection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded { - public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo pageInfo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_ClientsConnection? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -16077,7 +16621,7 @@ public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16097,7 +16641,7 @@ public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Coll return false; } - return Equals((ListClientCommandQuery_Node_Clients_ClientsConnection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -16105,43 +16649,33 @@ public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Coll unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_ClientsEdge : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_ClientsEdge + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved { - public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node node) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_ClientsEdge? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -16158,7 +16692,7 @@ public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.Stri return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16178,7 +16712,7 @@ public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.Stri return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_ClientsEdge)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -16186,46 +16720,35 @@ public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_PageInfo_PageInfo : global::System.IEquatable, IListClientCommandQuery_Node_Clients_PageInfo_PageInfo + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 { - public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -16242,7 +16765,7 @@ public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Bool return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16262,7 +16785,7 @@ public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Bool return false; } - return Equals((ListClientCommandQuery_Node_Clients_PageInfo_PageInfo)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -16270,16 +16793,16 @@ public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Bool unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - if (StartCursor != null) + if (New != null) { - hash ^= 397 * StartCursor.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } return hash; @@ -16289,22 +16812,27 @@ public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Bool // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Client : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Client + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? api, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? versions) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Id = id; - Name = name; - Api = api; - Versions = versions; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Client? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -16321,7 +16849,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.Stri return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16341,7 +16869,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.Stri return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Client)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -16349,18 +16877,11 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Versions != null) - { - hash ^= 397 * Versions.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -16368,18 +16889,27 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.Stri // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Api_Api + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Name = name; - Path = path; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -16396,7 +16926,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.Str return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16416,7 +16946,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.Str return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -16424,40 +16954,35 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.Str unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -16474,7 +16999,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConn return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16494,7 +17019,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConn return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -16502,43 +17027,33 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConn unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -16555,7 +17070,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersi return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16575,7 +17090,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersi return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -16583,36 +17098,37 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersi unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - HasNextPage = hasNextPage; - EndCursor = endCursor; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? EndCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -16629,7 +17145,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16649,7 +17165,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -16657,10 +17173,13 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -16670,22 +17189,25 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -16702,7 +17224,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Client return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16722,7 +17244,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Client return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -16730,12 +17252,16 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Client unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * PublishedTo_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -16745,16 +17271,25 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Client // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Stage = stage; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -16771,7 +17306,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16791,7 +17326,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -16799,9 +17334,16 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis unchecked { int hash = 5; - if (Stage != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -16811,16 +17353,23 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded { - public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Name = name; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -16837,7 +17386,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis return false; } - return (Name.Equals(other.Name)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -16857,7 +17406,7 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis return false; } - return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -16865,498 +17414,33 @@ public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_Publis unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQueryResult - { - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Api : IListClientCommandQuery_Node - { - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? Clients { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_ApiDocument : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_ApiKey : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Client : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_ClientChangeLog : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_ClientDeployment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_ClientVersion : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_CoordinateClientUsageMetrics : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Environment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_FusionConfigurationChangeLog : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_FusionConfigurationDeployment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLDirectiveDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLEnumTypeDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLEnumValueDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLScalarTypeDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_GraphQLUnionTypeDefinition : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Group : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_McpFeatureCollection : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_McpFeatureCollectionChangeLog : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_McpFeatureCollectionDeployment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_McpFeatureCollectionVersion : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_OpenApiCollection : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_OpenApiCollectionChangeLog : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_OpenApiCollectionDeployment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_OpenApiCollectionVersion : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Organization : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_OrganizationMember : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_SchemaChangeLog : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_SchemaDeployment : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Stage : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_User : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Workspace : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_WorkspaceDocument : IListClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_ClientsConnection : IListClientCommandQuery_Node_Clients - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_ClientsEdge : IListClientCommandQuery_Node_Clients_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_PageInfo_PageInfo : IListClientCommandQuery_Node_Clients_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node : IClientDetailPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Client : IListClientCommandQuery_Node_Clients_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Api - { - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Api_Api : IListClientCommandQuery_Node_Clients_Edges_Node_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection : IListClientCommandQuery_Node_Clients_Edges_Node_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersionResult : global::System.IEquatable, IPublishClientVersionResult + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved { - public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient publishClient) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - PublishClient = publishClient; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient PublishClient { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(PublishClientVersionResult? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -17373,7 +17457,7 @@ public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return (PublishClient.Equals(other.PublishClient)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17393,7 +17477,7 @@ public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return Equals((PublishClientVersionResult)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -17401,7 +17485,9 @@ public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I unchecked { int hash = 5; - hash ^= 397 * PublishClient.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -17409,18 +17495,22 @@ public PublishClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersion_PublishClient_PublishClientPayload : global::System.IEquatable, IPublishClientVersion_PublishClient_PublishClientPayload + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public PublishClientVersion_PublishClient_PublishClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - Id = id; - Errors = errors; + Code = code; + Message = message; + Path = path; + Locations = locations; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_PublishClientPayload? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -17437,7 +17527,7 @@ public PublishClientVersion_PublishClient_PublishClientPayload(global::System.St return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17457,7 +17547,7 @@ public PublishClientVersion_PublishClient_PublishClientPayload(global::System.St return false; } - return Equals((PublishClientVersion_PublishClient_PublishClientPayload)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -17465,16 +17555,22 @@ public PublishClientVersion_PublishClient_PublishClientPayload(global::System.St unchecked { int hash = 5; - if (Id != null) + if (Code != null) { - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); } - if (Errors != null) + hash ^= 397 * Message.GetHashCode(); + if (Path != null) { - foreach (var Errors_elm in Errors) + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Locations_elm.GetHashCode(); } } @@ -17485,23 +17581,16 @@ public PublishClientVersion_PublishClient_PublishClientPayload(global::System.St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersion_PublishClient_Errors_StageNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_StageNotFoundError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; Message = message; - Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -17518,7 +17607,7 @@ public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::Syst return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17538,7 +17627,7 @@ public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::Syst return false; } - return Equals((PublishClientVersion_PublishClient_Errors_StageNotFoundError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -17546,9 +17635,7 @@ public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::Syst unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -17556,18 +17643,22 @@ public PublishClientVersion_PublishClient_Errors_StageNotFoundError(global::Syst // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersion_PublishClient_Errors_ClientNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_ClientNotFoundError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { + Code = code; Message = message; - ClientId = clientId; + Path = path; + Locations = locations; } + public global::System.String? Code { get; } public global::System.String Message { get; } - public global::System.String ClientId { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_ClientNotFoundError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -17584,7 +17675,7 @@ public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::Sys return false; } - return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17604,7 +17695,7 @@ public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::Sys return false; } - return Equals((PublishClientVersion_PublishClient_Errors_ClientNotFoundError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -17612,8 +17703,25 @@ public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::Sys unchecked { int hash = 5; + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -17621,21 +17729,16 @@ public PublishClientVersion_PublishClient_Errors_ClientNotFoundError(global::Sys // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersion_PublishClient_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_UnauthorizedOperation + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -17652,7 +17755,7 @@ public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17672,7 +17775,7 @@ public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::S return false; } - return Equals((PublishClientVersion_PublishClient_Errors_UnauthorizedOperation)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -17680,7 +17783,6 @@ public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::S unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -17689,154 +17791,23 @@ public PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError : global::System.IEquatable, IPublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange { - public PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) - { - Tag = tag; - Message = message; - ClientId = clientId; - } - - public global::System.String Tag { get; } - public global::System.String Message { get; } - public global::System.String ClientId { get; } - - public virtual global::System.Boolean Equals(PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && ClientId.Equals(other.ClientId); - } - - 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((PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError)obj); - } - - public override global::System.Int32 GetHashCode() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - unchecked - { - int hash = 5; - hash ^= 397 * Tag.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); - return hash; - } + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersionResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient PublishClient { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_PublishClientPayload : IPublishClientVersion_PublishClient - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_Errors - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStageNotFoundError : IError - { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_Errors_StageNotFoundError : IPublishClientVersion_PublishClient_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_Errors_ClientNotFoundError : IPublishClientVersion_PublishClient_Errors, IClientNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_Errors_UnauthorizedOperation : IPublishClientVersion_PublishClient_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientVersionNotFoundError : IError - { - public global::System.String Tag { get; } - public global::System.String ClientId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError : IPublishClientVersion_PublishClient_Errors, IClientVersionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdatedResult : global::System.IEquatable, IOnClientVersionPublishUpdatedResult - { - public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate onClientVersionPublishingUpdate) - { - OnClientVersionPublishingUpdate = onClientVersionPublishingUpdate; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate OnClientVersionPublishingUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdatedResult? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -17853,7 +17824,7 @@ public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine return false; } - return (OnClientVersionPublishingUpdate.Equals(other.OnClientVersionPublishingUpdate)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17873,7 +17844,7 @@ public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine return false; } - return Equals((OnClientVersionPublishUpdatedResult)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -17881,7 +17852,13 @@ public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - hash ^= 397 * OnClientVersionPublishingUpdate.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -17889,23 +17866,25 @@ public OnClientVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - State = state; - Errors = errors; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -17922,7 +17901,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -17942,7 +17921,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -17951,10 +17930,15 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -17964,21 +17948,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; - State = state; + Severity = severity; + OldType = oldType; + NewType = newType; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -17995,7 +17983,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18015,7 +18003,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -18024,7 +18012,9 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -18032,21 +18022,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - this.__typename = __typename; - State = state; + Severity = severity; + DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -18063,7 +18050,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationIn return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18083,7 +18070,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationIn return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -18091,8 +18078,12 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationIn unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -18100,21 +18091,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationIn // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - State = state; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -18131,7 +18126,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18151,7 +18146,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -18159,8 +18154,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); return hash; } } @@ -18168,26 +18173,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - this.__typename = __typename; - Queued = queued; - QueuePosition = queuePosition; + Severity = severity; + DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -18204,7 +18201,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18224,7 +18221,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -18232,9 +18229,12 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Queued.GetHashCode(); - hash ^= 397 * QueuePosition.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -18242,24 +18242,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - Ready = ready; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -18276,7 +18277,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18296,7 +18297,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -18304,8 +18305,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -18313,23 +18324,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { + Severity = severity; + OldType = oldType; + NewType = newType; this.__typename = __typename; - State = state; - Deployment = deployment; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -18346,7 +18359,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForAppr return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18366,7 +18379,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForAppr return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -18374,13 +18387,10 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForAppr unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - if (Deployment != null) - { - hash ^= 397 * Deployment.GetHashCode(); - } - return hash; } } @@ -18388,21 +18398,27 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForAppr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -18419,7 +18435,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Conc return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18439,7 +18455,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Conc return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -18447,8 +18463,11 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Conc unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -18456,20 +18475,27 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Conc // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Message = message; - Client = client; - Queries = queries; + Severity = severity; + Coordinate = coordinate; + Name = name; + this.__typename = __typename; + Changes = changes; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -18486,7 +18512,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Pers return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18506,7 +18532,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Pers return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -18514,15 +18540,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Pers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -18532,21 +18556,27 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Pers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -18563,7 +18593,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Proc return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18583,7 +18613,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Proc return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -18591,8 +18621,11 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Proc unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -18600,13 +18633,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Proc // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError() + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -18623,7 +18661,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Read return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18643,7 +18681,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Read return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -18651,6 +18689,12 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Read unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -18658,21 +18702,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Read // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -18689,7 +18737,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Unex return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18709,7 +18757,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Unex return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -18717,8 +18765,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Unex unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -18726,16 +18784,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Unex // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Errors = errors; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -18752,7 +18819,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18772,7 +18839,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -18780,11 +18847,10 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -18792,16 +18858,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Errors = errors; + Column = column; + Line = line; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -18818,7 +18886,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18838,7 +18906,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -18846,11 +18914,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -18858,16 +18923,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Errors = errors; + Column = column; + Line = line; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -18884,7 +18951,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18904,7 +18971,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -18912,11 +18979,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -18924,16 +18988,23 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -18950,7 +19021,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -18970,7 +19041,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -18978,9 +19049,11 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -18990,16 +19063,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -19016,7 +19098,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -19036,7 +19118,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -19044,9 +19126,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -19056,18 +19145,25 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client + public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) + public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { - Id = id; - Name = name; + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } - public global::System.String Id { get; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -19084,7 +19180,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Clie return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -19104,7 +19200,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Clie return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client)obj); + return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -19112,745 +19208,1450 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Clie unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed + public partial interface IOnClientVersionPublishUpdatedResult { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) - { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; - } - - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate OnClientVersionPublishingUpdate { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientVersionPublishFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishFailed + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IClientVersionPublishSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishSuccess + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IOperationInProgress + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IProcessingTaskApproved + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskApproved + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IProcessingTaskIsQueued + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } + } - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsQueued + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IProcessingTaskIsReady + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsReady { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) - { - Message = message; - Client = client; - Queries = queries; - } + } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IWaitForApproval + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IWaitForApproval + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IConcurrentOperationError + { + } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IPersistedQueryValidationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IProcessingTimeoutError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IUnexpectedProcessingError + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) - { - Message = message; - Client = client; - Queries = queries; - } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationError + { + public global::System.Collections.Generic.IReadOnlyList Collections { get; } + } - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationError + { + public global::System.Collections.Generic.IReadOnlyList Collections { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) - { - Message = message; - Changes = changes; - } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaChangeViolationError + { public global::System.String Message { get; } public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInvalidGraphQLSchemaError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError + { + } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) - { - this.__typename = __typename; - Message = message; - Errors = errors; - } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOperationsAreNotAllowedError + { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaVersionSyntaxError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError + { + } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) - { - Collections = collections; - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaChangeLogEntry + { + public global::System.String __typename { get; } + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaChange + { + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDirectiveModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IEnumModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInputObjectModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) - { - Collections = collections; - } + } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInterfaceModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IObjectModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IScalarModifiedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ITypeSystemMemberAddedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ITypeSystemMemberRemovedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 + public partial interface IUnionModifiedChange : ISchemaChange { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) - { - Collections = collections; - } + public global::System.String Coordinate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) - { - Collections = collections; - } + } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + { + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + { + public global::System.String Name { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IArgumentAdded : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IArgumentChanged : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IArgumentRemoved : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDescriptionChanged : ISchemaChange + { + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) - { - Message = message; - Client = client; - Queries = queries; - } + } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDirectiveLocationAdded : ISchemaChange + { + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDirectiveLocationRemoved : ISchemaChange + { + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IEnumValueAdded : ISchemaChange + { + public global::System.String Coordinate { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IEnumValueChanged : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + { + } - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IEnumValueRemoved : ISchemaChange + { + public global::System.String Coordinate { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) - { - Message = message; - Changes = changes; - } + public global::System.String __typename { get; } + } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) - { - if (ReferenceEquals(null, other)) - { + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFieldAddedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFieldRemovedChange : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInputFieldChanged : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInterfaceImplementationAdded : ISchemaChange + { + public global::System.String InterfaceName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInterfaceImplementationRemoved : ISchemaChange + { + public global::System.String InterfaceName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOutputFieldChanged : ISchemaChange + { + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPossibleTypeAdded : ISchemaChange + { + public global::System.String TypeName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPossibleTypeRemoved : ISchemaChange + { + public global::System.String TypeName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUnionMemberAdded : ISchemaChange + { + public global::System.String TypeName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUnionMemberRemoved : ISchemaChange + { + public global::System.String TypeName { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationDocumentError + { + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationEntityValidationError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationDocumentError + { + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationEntityValidationError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeprecatedChange : ISchemaChange + { + public global::System.String? DeprecationReason { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ITypeChanged : ISchemaChange + { + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// 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 IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListClientCommandQueryResult : global::System.IEquatable, IListClientCommandQueryResult + { + public ListClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? node) + { + Node = node; + } + + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? Node { get; } + + public virtual global::System.Boolean Equals(ListClientCommandQueryResult? other) + { + if (ReferenceEquals(null, other)) + { return false; } @@ -19864,7 +20665,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -19884,7 +20685,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); + return Equals((ListClientCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -19892,10 +20693,9 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Node != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); } return hash; @@ -19905,21 +20705,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError + public partial class ListClientCommandQuery_Node_Api : global::System.IEquatable, IListClientCommandQuery_Node_Api { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) + public ListClientCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? clients) { - this.__typename = __typename; - Message = message; + Clients = clients; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? Clients { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -19936,7 +20731,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((Clients is null && other.Clients is null) || Clients != null && Clients.Equals(other.Clients))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -19956,7 +20751,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); + return Equals((ListClientCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -19964,8 +20759,11 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Clients != null) + { + hash ^= 397 * Clients.GetHashCode(); + } + return hash; } } @@ -19973,27 +20771,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError + public partial class ListClientCommandQuery_Node_ApiDocument : global::System.IEquatable, IListClientCommandQuery_Node_ApiDocument { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public ListClientCommandQuery_Node_ApiDocument() { - this.__typename = __typename; - Message = message; - Column = column; - Position = position; - Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -20010,7 +20794,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20030,7 +20814,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); + return Equals((ListClientCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -20038,11 +20822,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -20050,23 +20829,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 + public partial class ListClientCommandQuery_Node_ApiKey : global::System.IEquatable, IListClientCommandQuery_Node_ApiKey { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public ListClientCommandQuery_Node_ApiKey() { - this.__typename = __typename; - Message = message; - Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -20083,7 +20852,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20103,7 +20872,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((ListClientCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -20111,13 +20880,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -20125,16 +20887,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 + public partial class ListClientCommandQuery_Node_Client : global::System.IEquatable, IListClientCommandQuery_Node_Client { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public ListClientCommandQuery_Node_Client() { - Collections = collections; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -20151,7 +20910,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20171,7 +20930,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + return Equals((ListClientCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -20179,11 +20938,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - return hash; } } @@ -20191,16 +20945,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 + public partial class ListClientCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_ClientChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public ListClientCommandQuery_Node_ClientChangeLog() { - Collections = collections; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -20217,7 +20968,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20237,7 +20988,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + return Equals((ListClientCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -20245,11 +20996,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - return hash; } } @@ -20257,22 +21003,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError + public partial class ListClientCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListClientCommandQuery_Node_ClientDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ListClientCommandQuery_Node_ClientDeployment() { - Message = message; - Code = code; - Path = path; - Locations = locations; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -20289,7 +21026,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20309,7 +21046,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((ListClientCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -20317,25 +21054,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -20343,18 +21061,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client + public partial class ListClientCommandQuery_Node_ClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_ClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) + public ListClientCommandQuery_Node_ClientVersion() { - Id = id; - Name = name; } - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -20371,7 +21084,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20391,7 +21104,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); + return Equals((ListClientCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -20399,8 +21112,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -20408,22 +21119,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed + public partial class ListClientCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListClientCommandQuery_Node_CoordinateClientUsageMetrics { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public ListClientCommandQuery_Node_CoordinateClientUsageMetrics() { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -20440,7 +21142,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20460,7 +21162,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((ListClientCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -20468,18 +21170,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -20487,25 +21177,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange + public partial class ListClientCommandQuery_Node_Environment : global::System.IEquatable, IListClientCommandQuery_Node_Environment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -20522,7 +21200,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20542,7 +21220,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -20550,14 +21228,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20565,25 +21235,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange + public partial class ListClientCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_FusionConfigurationChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_FusionConfigurationChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -20600,7 +21258,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20620,7 +21278,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -20628,14 +21286,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20643,25 +21293,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange + public partial class ListClientCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListClientCommandQuery_Node_FusionConfigurationDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_FusionConfigurationDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -20678,7 +21316,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20698,7 +21336,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -20706,14 +21344,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20721,25 +21351,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange + public partial class ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -20756,7 +21374,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20776,7 +21394,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -20784,14 +21402,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20799,25 +21409,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange + public partial class ListClientCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLDirectiveDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_GraphQLDirectiveDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -20834,7 +21432,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20854,7 +21452,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -20862,14 +21460,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20877,25 +21467,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange + public partial class ListClientCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLEnumTypeDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_GraphQLEnumTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -20912,7 +21490,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -20932,7 +21510,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -20940,14 +21518,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -20955,23 +21525,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange + public partial class ListClientCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLEnumValueDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListClientCommandQuery_Node_GraphQLEnumValueDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -20988,7 +21548,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21008,7 +21568,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21016,9 +21576,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -21026,21 +21583,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange + public partial class ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21057,7 +21606,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21077,7 +21626,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21085,8 +21634,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -21094,23 +21641,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange + public partial class ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21127,7 +21664,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21147,7 +21684,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21155,9 +21692,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -21165,25 +21699,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange + public partial class ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21200,7 +21722,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21220,7 +21742,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); + return Equals((ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21228,14 +21750,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -21243,18 +21757,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError + public partial class ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() { - Message = message; - Code = code; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21271,7 +21780,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21291,7 +21800,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); + return Equals((ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21299,12 +21808,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - return hash; } } @@ -21312,18 +21815,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection + public partial class ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() { - OpenApiCollection = openApiCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21340,7 +21838,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21360,7 +21858,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21368,16 +21866,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -21385,18 +21873,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21413,7 +21896,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21433,7 +21916,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21441,16 +21924,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -21458,18 +21931,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial class ListClientCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLObjectFieldDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ListClientCommandQuery_Node_GraphQLObjectFieldDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21486,7 +21954,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21506,7 +21974,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + return Equals((ListClientCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21514,8 +21982,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -21523,27 +21989,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Quer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded + public partial class ListClientCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLScalarTypeDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ListClientCommandQuery_Node_GraphQLScalarTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21560,7 +22012,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21580,7 +22032,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((ListClientCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21588,11 +22040,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -21600,27 +22047,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged + public partial class ListClientCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListClientCommandQuery_Node_GraphQLUnionTypeDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_GraphQLUnionTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -21637,7 +22070,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21657,7 +22090,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((ListClientCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -21665,15 +22098,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -21681,27 +22105,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved + public partial class ListClientCommandQuery_Node_Group : global::System.IEquatable, IListClientCommandQuery_Node_Group { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ListClientCommandQuery_Node_Group() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -21718,7 +22128,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21738,7 +22148,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((ListClientCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -21746,11 +22156,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -21758,25 +22163,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged + public partial class ListClientCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_McpFeatureCollection() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -21793,7 +22186,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21813,7 +22206,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((ListClientCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -21821,18 +22214,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -21840,23 +22221,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded + public partial class ListClientCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ListClientCommandQuery_Node_McpFeatureCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Location = location; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -21873,7 +22244,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21893,7 +22264,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((ListClientCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -21901,9 +22272,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -21911,23 +22279,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class ListClientCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ListClientCommandQuery_Node_McpFeatureCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Location = location; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -21944,7 +22302,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -21964,7 +22322,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((ListClientCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -21972,9 +22330,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -21982,25 +22337,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 + public partial class ListClientCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListClientCommandQuery_Node_McpFeatureCollectionVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_McpFeatureCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -22017,7 +22360,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22037,7 +22380,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((ListClientCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -22045,18 +22388,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -22064,23 +22395,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded + public partial class ListClientCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListClientCommandQuery_Node_OpenApiCollection() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -22097,7 +22418,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22117,7 +22438,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((ListClientCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -22125,9 +22446,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -22135,25 +22453,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged + public partial class ListClientCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_OpenApiCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -22170,7 +22476,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22190,7 +22496,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((ListClientCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -22198,14 +22504,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -22213,23 +22511,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved + public partial class ListClientCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListClientCommandQuery_Node_OpenApiCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -22246,7 +22534,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22266,7 +22554,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((ListClientCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -22274,9 +22562,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -22284,25 +22569,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 + public partial class ListClientCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListClientCommandQuery_Node_OpenApiCollectionVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_OpenApiCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -22319,7 +22592,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22339,7 +22612,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ListClientCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -22347,18 +22620,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -22366,27 +22627,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange + public partial class ListClientCommandQuery_Node_Organization : global::System.IEquatable, IListClientCommandQuery_Node_Organization { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_Organization() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -22403,7 +22650,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22423,7 +22670,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((ListClientCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -22431,11 +22678,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -22443,27 +22685,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange + public partial class ListClientCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListClientCommandQuery_Node_OrganizationMember { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_OrganizationMember() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -22480,7 +22708,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22500,7 +22728,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((ListClientCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -22508,11 +22736,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -22520,27 +22743,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged + public partial class ListClientCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListClientCommandQuery_Node_SchemaChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_SchemaChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -22557,7 +22766,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22577,7 +22786,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((ListClientCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -22585,15 +22794,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -22601,25 +22801,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 + public partial class ListClientCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListClientCommandQuery_Node_SchemaDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_SchemaDeployment() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -22636,7 +22824,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22656,7 +22844,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((ListClientCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -22664,18 +22852,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -22683,27 +22859,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 + public partial class ListClientCommandQuery_Node_Stage : global::System.IEquatable, IListClientCommandQuery_Node_Stage { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_Stage() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -22720,7 +22882,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22740,7 +22902,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((ListClientCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -22748,11 +22910,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -22760,27 +22917,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class ListClientCommandQuery_Node_User : global::System.IEquatable, IListClientCommandQuery_Node_User { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_User() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -22797,7 +22940,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22817,7 +22960,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((ListClientCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -22825,11 +22968,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -22837,23 +22975,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class ListClientCommandQuery_Node_Workspace : global::System.IEquatable, IListClientCommandQuery_Node_Workspace { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListClientCommandQuery_Node_Workspace() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -22870,7 +22998,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22890,7 +23018,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((ListClientCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -22898,9 +23026,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -22908,23 +23033,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class ListClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListClientCommandQuery_Node_WorkspaceDocument { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListClientCommandQuery_Node_WorkspaceDocument() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -22941,7 +23056,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -22961,7 +23076,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((ListClientCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -22969,37 +23084,34 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged + public partial class ListClientCommandQuery_Node_Clients_ClientsConnection : global::System.IEquatable, IListClientCommandQuery_Node_Clients_ClientsConnection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo pageInfo) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_ClientsConnection? other) { if (ReferenceEquals(null, other)) { @@ -23016,7 +23128,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23036,7 +23148,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((ListClientCommandQuery_Node_Clients_ClientsConnection)obj); } public override global::System.Int32 GetHashCode() @@ -23044,39 +23156,43 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Edges != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } } + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded + public partial class ListClientCommandQuery_Node_Clients_Edges_ClientsEdge : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_ClientsEdge { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node node) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_ClientsEdge? other) { if (ReferenceEquals(null, other)) { @@ -23093,7 +23209,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23113,7 +23229,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_ClientsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -23121,33 +23237,46 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved + public partial class ListClientCommandQuery_Node_Clients_PageInfo_PageInfo : global::System.IEquatable, IListClientCommandQuery_Node_Clients_PageInfo_PageInfo { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -23164,7 +23293,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23184,7 +23313,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((ListClientCommandQuery_Node_Clients_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -23192,9 +23321,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -23202,25 +23340,22 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Client : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Client { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_Clients_Edges_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? api, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? versions) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; + Api = api; + Versions = versions; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -23237,7 +23372,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23257,7 +23392,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -23265,16 +23400,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Api != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Api.GetHashCode(); } - if (New != null) + if (Versions != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Versions.GetHashCode(); } return hash; @@ -23284,27 +23419,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Api_Api { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Name = name; + Path = path; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -23321,7 +23447,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23341,7 +23467,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -23349,39 +23475,40 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo pageInfo) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection? other) { if (ReferenceEquals(null, other)) { @@ -23398,7 +23525,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23418,7 +23545,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection)obj); } public override global::System.Int32 GetHashCode() @@ -23426,35 +23553,43 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge? other) { if (ReferenceEquals(null, other)) { @@ -23471,7 +23606,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23491,7 +23626,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge)obj); } public override global::System.Int32 GetHashCode() @@ -23499,33 +23634,36 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + HasNextPage = hasNextPage; + EndCursor = endCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist following the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -23542,7 +23680,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23562,7 +23700,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -23570,9 +23708,12 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + return hash; } } @@ -23580,27 +23721,22 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -23617,7 +23753,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23637,7 +23773,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -23645,13 +23781,12 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * PublishedTo_elm.GetHashCode(); } return hash; @@ -23661,25 +23796,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Stage = stage; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -23696,7 +23822,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23716,7 +23842,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -23724,16 +23850,9 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (Stage != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Stage.GetHashCode(); } return hash; @@ -23743,25 +23862,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 + public partial class ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -23778,7 +23888,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -23798,7 +23908,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((ListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -23806,385 +23916,498 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded + public partial interface IListClientCommandQueryResult { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) - { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; - } - /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? Node { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Api : IListClientCommandQuery_Node + { + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? Clients { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_ApiDocument : IListClientCommandQuery_Node + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_ApiKey : IListClientCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Client : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_ClientChangeLog : IListClientCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_ClientDeployment : IListClientCommandQuery_Node + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_ClientVersion : IListClientCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_CoordinateClientUsageMetrics : IListClientCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved + public partial interface IListClientCommandQuery_Node_Environment : IListClientCommandQuery_Node { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) - { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_FusionConfigurationChangeLog : IListClientCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_FusionConfigurationDeployment : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListClientCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLDirectiveDefinition : IListClientCommandQuery_Node + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLEnumTypeDefinition : IListClientCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLEnumValueDefinition : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListClientCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListClientCommandQuery_Node + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListClientCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListClientCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial interface IListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListClientCommandQuery_Node { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) - { - Id = id; - Name = name; - } + } - public global::System.String Id { get; } - public global::System.String Name { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListClientCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLObjectFieldDefinition : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLScalarTypeDefinition : IListClientCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_GraphQLUnionTypeDefinition : IListClientCommandQuery_Node + { + } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Group : IListClientCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_McpFeatureCollection : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_McpFeatureCollectionChangeLog : IListClientCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_McpFeatureCollectionDeployment : IListClientCommandQuery_Node + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_McpFeatureCollectionVersion : IListClientCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OpenApiCollection : IListClientCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial interface IListClientCommandQuery_Node_OpenApiCollectionChangeLog : IListClientCommandQuery_Node { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) - { - Errors = errors; - HttpMethod = httpMethod; - Route = route; - } + } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OpenApiCollectionDeployment : IListClientCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OpenApiCollectionVersion : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Organization : IListClientCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_OrganizationMember : IListClientCommandQuery_Node + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_SchemaChangeLog : IListClientCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_SchemaDeployment : IListClientCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Stage : IListClientCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_User : IListClientCommandQuery_Node + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Workspace : IListClientCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_WorkspaceDocument : IListClientCommandQuery_Node + { + } - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo PageInfo { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial interface IListClientCommandQuery_Node_Clients_ClientsConnection : IListClientCommandQuery_Node_Clients { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) - { - Errors = errors; - Name = name; - } + } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_ClientsEdge : IListClientCommandQuery_Node_Clients_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_PageInfo_PageInfo : IListClientCommandQuery_Node_Clients_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node : IClientDetailPrompt_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Client : IListClientCommandQuery_Node_Clients_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Api + { public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Api_Api : IListClientCommandQuery_Node_Clients_Edges_Node_Api + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_ClientVersionConnection : IListClientCommandQuery_Node_Clients_Edges_Node_Versions + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo + { + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo_PageInfo : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_PageInfo + { + } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node + { + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node + { + } - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IListClientCommandQuery_Node_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class CreateClientCommandMutationResult : global::System.IEquatable, ICreateClientCommandMutationResult { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public CreateClientCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient createClient) { - Id = id; - Name = name; + CreateClient = createClient; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient CreateClient { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -24201,7 +24424,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (CreateClient.Equals(other.CreateClient)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24221,7 +24444,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((CreateClientCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -24229,8 +24452,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * CreateClient.GetHashCode(); return hash; } } @@ -24238,18 +24460,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class CreateClientCommandMutation_CreateClient_CreateClientPayload : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_CreateClientPayload { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public CreateClientCommandMutation_CreateClient_CreateClientPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? client, global::System.Collections.Generic.IReadOnlyList? errors) { + Client = client; Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_CreateClientPayload? other) { if (ReferenceEquals(null, other)) { @@ -24266,7 +24488,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24286,7 +24508,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((CreateClientCommandMutation_CreateClient_CreateClientPayload)obj); } public override global::System.Int32 GetHashCode() @@ -24294,12 +24516,19 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (Client != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -24307,18 +24536,22 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class CreateClientCommandMutation_CreateClient_Client_Client : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Client { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public CreateClientCommandMutation_CreateClient_Client_Client(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? api, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? versions) { - Errors = errors; Name = name; + Id = id; + Api = api; + Versions = versions; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } public global::System.String Name { get; } + public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -24335,7 +24568,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24355,7 +24588,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -24363,12 +24596,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + if (Api != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Api.GetHashCode(); + } + + if (Versions != null) + { + hash ^= 397 * Versions.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -24376,23 +24615,23 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange + public partial class CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) { + Message = message; this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + ApiId = apiId; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -24409,7 +24648,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24429,7 +24668,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -24437,13 +24676,9 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -24451,25 +24686,21 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged + public partial class CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -24486,7 +24717,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24506,7 +24737,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -24514,18 +24745,8 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -24533,25 +24754,18 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged + public partial class CreateClientCommandMutation_CreateClient_Client_Api_Api : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Api_Api { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public CreateClientCommandMutation_CreateClient_Client_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + Name = name; + Path = path; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -24568,7 +24782,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24588,7 +24802,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -24596,29 +24810,40 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo pageInfo) { - Severity = severity; - DeprecationReason = deprecationReason; + Edges = edges; + PageInfo = pageInfo; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection? other) { if (ReferenceEquals(null, other)) { @@ -24635,7 +24860,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24655,7 +24880,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection)obj); } public override global::System.Int32 GetHashCode() @@ -24663,38 +24888,43 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + if (Edges != null) { - hash ^= 397 * DeprecationReason.GetHashCode(); + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } } + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Cursor = cursor; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge? other) { if (ReferenceEquals(null, other)) { @@ -24711,7 +24941,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24731,7 +24961,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge)obj); } public override global::System.Int32 GetHashCode() @@ -24739,37 +24969,36 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) { - Severity = severity; - DeprecationReason = deprecationReason; + HasNextPage = hasNextPage; + EndCursor = endCursor; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -24786,7 +25015,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24806,7 +25035,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -24814,10 +25043,10 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); } return hash; @@ -24827,25 +25056,22 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -24862,7 +25088,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24882,7 +25108,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -24890,18 +25116,14 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * PublishedTo_elm.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -24909,25 +25131,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; + Stage = stage; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -24944,7 +25157,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -24964,7 +25177,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -24972,10 +25185,11 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (Stage != null) + { + hash ^= 397 * Stage.GetHashCode(); + } + return hash; } } @@ -24983,27 +25197,16 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded + public partial class CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) { - Severity = severity; - Coordinate = coordinate; Name = name; - TypeName = typeName; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -25020,7 +25223,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25040,7 +25243,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); + return Equals((CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -25048,39 +25251,210 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged + public partial interface ICreateClientCommandMutationResult { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient CreateClient { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_CreateClientPayload : ICreateClientCommandMutation_CreateClient + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_Client : IClientDetailPrompt_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client : ICreateClientCommandMutation_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Client : ICreateClientCommandMutation_CreateClient_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError : ICreateClientCommandMutation_CreateClient_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation : ICreateClientCommandMutation_CreateClient_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Api + { + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Api_Api : ICreateClientCommandMutation_CreateClient_Client_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection : ICreateClientCommandMutation_CreateClient_Client_Versions + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges : IClientDetailPrompt_ClientVersionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo + { + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo : ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node + { + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage : ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowApiCommandQueryResult : global::System.IEquatable, IShowApiCommandQueryResult + { + public ShowApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? node) { - Severity = severity; - Coordinate = coordinate; - Name = name; - this.__typename = __typename; - Changes = changes; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ShowApiCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -25097,7 +25471,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25117,7 +25491,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); + return Equals((ShowApiCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -25125,13 +25499,9 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Node != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); } return hash; @@ -25141,27 +25511,24 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved + public partial class ShowApiCommandQuery_Node_Api : global::System.IEquatable, IShowApiCommandQuery_Node_Api { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public ShowApiCommandQuery_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) { - Severity = severity; - Coordinate = coordinate; + Id = id; Name = name; - TypeName = typeName; - this.__typename = __typename; + Path = path; + Workspace = workspace; + Settings = settings; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -25178,7 +25545,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25198,7 +25565,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); + return Equals((ShowApiCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -25206,11 +25573,19 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + + hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -25218,18 +25593,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 + public partial class ShowApiCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowApiCommandQuery_Node_ApiDocument { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ShowApiCommandQuery_Node_ApiDocument() { - Severity = severity; - DeprecationReason = deprecationReason; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -25246,7 +25616,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25266,7 +25636,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); + return Equals((ShowApiCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -25274,12 +25644,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -25287,25 +25651,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 + public partial class ShowApiCommandQuery_Node_ApiKey : global::System.IEquatable, IShowApiCommandQuery_Node_ApiKey { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public ShowApiCommandQuery_Node_ApiKey() { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -25322,7 +25674,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25342,7 +25694,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((ShowApiCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -25350,18 +25702,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -25369,25 +25709,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 + public partial class ShowApiCommandQuery_Node_Client : global::System.IEquatable, IShowApiCommandQuery_Node_Client { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public ShowApiCommandQuery_Node_Client() { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -25404,7 +25732,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25424,7 +25752,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((ShowApiCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -25432,10 +25760,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -25443,22 +25767,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial class ShowApiCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_ClientChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ShowApiCommandQuery_Node_ClientChangeLog() { - Code = code; - Message = message; - Path = path; - Locations = locations; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -25475,7 +25790,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25495,7 +25810,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + return Equals((ShowApiCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -25503,25 +25818,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -25529,16 +25825,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial class ShowApiCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_ClientDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) + public ShowApiCommandQuery_Node_ClientDeployment() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -25555,7 +25848,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25575,7 +25868,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); + return Equals((ShowApiCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -25583,7 +25876,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -25591,22 +25883,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class ShowApiCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowApiCommandQuery_Node_ClientVersion { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ShowApiCommandQuery_Node_ClientVersion() { - Code = code; - Message = message; - Path = path; - Locations = locations; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -25623,7 +25906,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25643,7 +25926,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((ShowApiCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -25651,25 +25934,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -25677,16 +25941,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class ShowApiCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowApiCommandQuery_Node_CoordinateClientUsageMetrics { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public ShowApiCommandQuery_Node_CoordinateClientUsageMetrics() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -25703,7 +25964,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25723,7 +25984,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((ShowApiCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -25731,7 +25992,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -25739,23 +25999,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange + public partial class ShowApiCommandQuery_Node_Environment : global::System.IEquatable, IShowApiCommandQuery_Node_Environment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ShowApiCommandQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -25772,7 +26022,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25792,7 +26042,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((ShowApiCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -25800,13 +26050,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -25814,25 +26057,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged + public partial class ShowApiCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_FusionConfigurationChangeLog { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowApiCommandQuery_Node_FusionConfigurationChangeLog() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -25849,7 +26080,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25869,7 +26100,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((ShowApiCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -25877,18 +26108,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -25896,25 +26115,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged + public partial class ShowApiCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_FusionConfigurationDeployment { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public ShowApiCommandQuery_Node_FusionConfigurationDeployment() { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -25931,7 +26138,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -25951,7 +26158,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); + return Equals((ShowApiCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -25959,10 +26166,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -25970,18 +26173,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -25998,7 +26196,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -26018,7 +26216,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -26026,8 +26224,6 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -26035,18 +26231,13 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class ShowApiCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLDirectiveDefinition { - public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ShowApiCommandQuery_Node_GraphQLDirectiveDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -26063,7 +26254,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -26083,7 +26274,7 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((ShowApiCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -26091,1493 +26282,832 @@ public OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdatedResult + public partial class ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLEnumTypeDefinition { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate OnClientVersionPublishingUpdate { get; } - } + public ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate - { - public global::System.String __typename { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientVersionPublishFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishFailed - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientVersionPublishSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IClientVersionPublishSuccess - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOperationInProgress - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IOperationInProgress - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IProcessingTaskApproved - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + return Equals((ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskApproved - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IProcessingTaskIsQueued + public partial class ShowApiCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLEnumValueDefinition { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } - } + public ShowApiCommandQuery_Node_GraphQLEnumValueDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsQueued - { - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLEnumValueDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IProcessingTaskIsReady - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IProcessingTaskIsReady - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IWaitForApproval - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate, IWaitForApproval - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IConcurrentOperationError : IError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IConcurrentOperationError - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLEnumValueDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPersistedQueryValidationError - { - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IPersistedQueryValidationError + public partial class ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition { - } + public ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IProcessingTimeoutError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IProcessingTimeoutError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnexpectedProcessingError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors, IUnexpectedProcessingError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return Equals((ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment + public partial class ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaChangeViolationError + public partial class ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError - { - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInvalidGraphQLSchemaError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionValidationError - { - public global::System.Collections.Generic.IReadOnlyList Collections { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionValidationError - { - public global::System.Collections.Generic.IReadOnlyList Collections { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 + public partial class ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition { - } + public ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError - { - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOperationsAreNotAllowedError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionSyntaxError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError + public partial class ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition { - } + public ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError - { - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client_Client : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Client - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Queries - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaChangeLogEntry - { - public global::System.String __typename { get; } - } + return Equals((ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaChange + public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - } + public ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDirectiveModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IEnumModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInputObjectModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInterfaceModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IObjectModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange + public partial class ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition { - } + public ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IScalarModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ITypeSystemMemberAddedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ITypeSystemMemberRemovedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnionModifiedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + return Equals((ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors + public partial class ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLScalarTypeDefinition { - public global::System.String Message { get; } - public global::System.String? Code { get; } - } + public ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors - { - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } + return Equals((ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IArgumentAdded : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded + public partial class ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowApiCommandQuery_Node_GraphQLUnionTypeDefinition { - } + public ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IArgumentChanged : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IArgumentRemoved : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDescriptionChanged : ISchemaChange - { - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDirectiveLocationAdded : ISchemaChange - { - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded - { - } + return Equals((ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDirectiveLocationRemoved : ISchemaChange - { - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + public partial class ShowApiCommandQuery_Node_Group : global::System.IEquatable, IShowApiCommandQuery_Node_Group { - } + public ShowApiCommandQuery_Node_Group() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Group? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IEnumValueAdded : ISchemaChange - { - public global::System.String Coordinate { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IEnumValueChanged : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IEnumValueRemoved : ISchemaChange - { - public global::System.String Coordinate { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved - { - } + return Equals((ShowApiCommandQuery_Node_Group)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + public partial class ShowApiCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollection { - } + public ShowApiCommandQuery_Node_McpFeatureCollection() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFieldAddedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFieldRemovedChange : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInputFieldChanged : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged - { - } + return Equals((ShowApiCommandQuery_Node_McpFeatureCollection)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + public partial class ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionChangeLog { - } + public ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInterfaceImplementationAdded : ISchemaChange - { - public global::System.String InterfaceName { get; } - } + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInterfaceImplementationRemoved : ISchemaChange - { - public global::System.String InterfaceName { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOutputFieldChanged : ISchemaChange - { - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPossibleTypeAdded : ISchemaChange - { - public global::System.String TypeName { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } + return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPossibleTypeRemoved : ISchemaChange - { - public global::System.String TypeName { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + public partial class ShowApiCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionDeployment { - } + public ShowApiCommandQuery_Node_McpFeatureCollectionDeployment() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnionMemberAdded : ISchemaChange - { - public global::System.String TypeName { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnionMemberRemoved : ISchemaChange - { - public global::System.String TypeName { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeprecatedChange : ISchemaChange - { - public global::System.String? DeprecationReason { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ITypeChanged : ISchemaChange - { - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// 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 IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionValidationDocumentError - { - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionValidationEntityValidationError - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionValidationDocumentError - { - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1, IMcpFeatureCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionValidationEntityValidationError - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1, IMcpFeatureCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryResult : global::System.IEquatable, IShowClientCommandQueryResult - { - public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? node) - { - Node = node; - } - - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? Node { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQueryResult? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -27594,7 +27124,7 @@ public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -27614,7 +27144,7 @@ public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client return false; } - return Equals((ShowClientCommandQueryResult)obj); + return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -27622,11 +27152,6 @@ public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client unchecked { int hash = 5; - if (Node != null) - { - hash ^= 397 * Node.GetHashCode(); - } - return hash; } } @@ -27634,13 +27159,13 @@ public ShowClientCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Api : global::System.IEquatable, IShowClientCommandQuery_Node_Api + public partial class ShowApiCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowApiCommandQuery_Node_McpFeatureCollectionVersion { - public ShowClientCommandQuery_Node_Api() + public ShowApiCommandQuery_Node_McpFeatureCollectionVersion() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -27677,7 +27202,7 @@ public ShowClientCommandQuery_Node_Api() return false; } - return Equals((ShowClientCommandQuery_Node_Api)obj); + return Equals((ShowApiCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -27692,13 +27217,13 @@ public ShowClientCommandQuery_Node_Api() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowClientCommandQuery_Node_ApiDocument + public partial class ShowApiCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollection { - public ShowClientCommandQuery_Node_ApiDocument() + public ShowApiCommandQuery_Node_OpenApiCollection() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ApiDocument? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -27735,7 +27260,7 @@ public ShowClientCommandQuery_Node_ApiDocument() return false; } - return Equals((ShowClientCommandQuery_Node_ApiDocument)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -27750,13 +27275,13 @@ public ShowClientCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_ApiKey : global::System.IEquatable, IShowClientCommandQuery_Node_ApiKey + public partial class ShowApiCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionChangeLog { - public ShowClientCommandQuery_Node_ApiKey() + public ShowApiCommandQuery_Node_OpenApiCollectionChangeLog() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ApiKey? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -27793,7 +27318,7 @@ public ShowClientCommandQuery_Node_ApiKey() return false; } - return Equals((ShowClientCommandQuery_Node_ApiKey)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -27808,22 +27333,13 @@ public ShowClientCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Client : global::System.IEquatable, IShowClientCommandQuery_Node_Client + public partial class ShowApiCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionDeployment { - public ShowClientCommandQuery_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? api, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? versions) + public ShowApiCommandQuery_Node_OpenApiCollectionDeployment() { - Id = id; - Name = name; - Api = api; - Versions = versions; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Client? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -27840,7 +27356,7 @@ public ShowClientCommandQuery_Node_Client(global::System.String id, global::Syst return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -27860,7 +27376,7 @@ public ShowClientCommandQuery_Node_Client(global::System.String id, global::Syst return false; } - return Equals((ShowClientCommandQuery_Node_Client)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -27868,18 +27384,6 @@ public ShowClientCommandQuery_Node_Client(global::System.String id, global::Syst unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Versions != null) - { - hash ^= 397 * Versions.GetHashCode(); - } - return hash; } } @@ -27887,13 +27391,13 @@ public ShowClientCommandQuery_Node_Client(global::System.String id, global::Syst // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_ClientChangeLog + public partial class ShowApiCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowApiCommandQuery_Node_OpenApiCollectionVersion { - public ShowClientCommandQuery_Node_ClientChangeLog() + public ShowApiCommandQuery_Node_OpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientChangeLog? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -27930,7 +27434,7 @@ public ShowClientCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ShowClientCommandQuery_Node_ClientChangeLog)obj); + return Equals((ShowApiCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -27945,13 +27449,13 @@ public ShowClientCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_ClientDeployment + public partial class ShowApiCommandQuery_Node_Organization : global::System.IEquatable, IShowApiCommandQuery_Node_Organization { - public ShowClientCommandQuery_Node_ClientDeployment() + public ShowApiCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientDeployment? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -27988,7 +27492,7 @@ public ShowClientCommandQuery_Node_ClientDeployment() return false; } - return Equals((ShowClientCommandQuery_Node_ClientDeployment)obj); + return Equals((ShowApiCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -28003,13 +27507,13 @@ public ShowClientCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_ClientVersion + public partial class ShowApiCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowApiCommandQuery_Node_OrganizationMember { - public ShowClientCommandQuery_Node_ClientVersion() + public ShowApiCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -28046,7 +27550,7 @@ public ShowClientCommandQuery_Node_ClientVersion() return false; } - return Equals((ShowClientCommandQuery_Node_ClientVersion)obj); + return Equals((ShowApiCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -28061,13 +27565,13 @@ public ShowClientCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowClientCommandQuery_Node_CoordinateClientUsageMetrics + public partial class ShowApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaChangeLog { - public ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() + public ShowApiCommandQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_CoordinateClientUsageMetrics? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -28104,7 +27608,7 @@ public ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ShowClientCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((ShowApiCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -28119,13 +27623,13 @@ public ShowClientCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Environment : global::System.IEquatable, IShowClientCommandQuery_Node_Environment + public partial class ShowApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowApiCommandQuery_Node_SchemaDeployment { - public ShowClientCommandQuery_Node_Environment() + public ShowApiCommandQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Environment? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -28162,7 +27666,7 @@ public ShowClientCommandQuery_Node_Environment() return false; } - return Equals((ShowClientCommandQuery_Node_Environment)obj); + return Equals((ShowApiCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -28177,13 +27681,13 @@ public ShowClientCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_FusionConfigurationChangeLog + public partial class ShowApiCommandQuery_Node_Stage : global::System.IEquatable, IShowApiCommandQuery_Node_Stage { - public ShowClientCommandQuery_Node_FusionConfigurationChangeLog() + public ShowApiCommandQuery_Node_Stage() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_FusionConfigurationChangeLog? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -28220,7 +27724,7 @@ public ShowClientCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ShowClientCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((ShowApiCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -28235,13 +27739,13 @@ public ShowClientCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_FusionConfigurationDeployment + public partial class ShowApiCommandQuery_Node_User : global::System.IEquatable, IShowApiCommandQuery_Node_User { - public ShowClientCommandQuery_Node_FusionConfigurationDeployment() + public ShowApiCommandQuery_Node_User() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -28278,7 +27782,7 @@ public ShowClientCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ShowClientCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((ShowApiCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -28293,13 +27797,13 @@ public ShowClientCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class ShowApiCommandQuery_Node_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace { - public ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public ShowApiCommandQuery_Node_Workspace() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -28336,7 +27840,7 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((ShowApiCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -28351,13 +27855,13 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLDirectiveDefinition + public partial class ShowApiCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowApiCommandQuery_Node_WorkspaceDocument { - public ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() + public ShowApiCommandQuery_Node_WorkspaceDocument() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLDirectiveDefinition? other) + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -28394,7 +27898,7 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((ShowApiCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -28409,13 +27913,18 @@ public ShowClientCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class ShowApiCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IShowApiCommandQuery_Node_Workspace_Workspace { - public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() + public ShowApiCommandQuery_Node_Workspace_Workspace(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -28432,7 +27941,7 @@ public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -28452,7 +27961,7 @@ public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((ShowApiCommandQuery_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -28460,6 +27969,8 @@ public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -28467,13 +27978,16 @@ public ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLEnumValueDefinition + public partial class ShowApiCommandQuery_Node_Settings_ApiSettings : global::System.IEquatable, IShowApiCommandQuery_Node_Settings_ApiSettings { - public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() + public ShowApiCommandQuery_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) { + SchemaRegistry = schemaRegistry; } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLEnumValueDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Settings_ApiSettings? other) { if (ReferenceEquals(null, other)) { @@ -28490,7 +28004,7 @@ public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (SchemaRegistry.Equals(other.SchemaRegistry)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -28510,7 +28024,7 @@ public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((ShowApiCommandQuery_Node_Settings_ApiSettings)obj); } public override global::System.Int32 GetHashCode() @@ -28518,6 +28032,7 @@ public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * SchemaRegistry.GetHashCode(); return hash; } } @@ -28525,13 +28040,18 @@ public ShowClientCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings { - public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) { + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + + public virtual global::System.Boolean Equals(ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) { if (ReferenceEquals(null, other)) { @@ -28548,7 +28068,7 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -28568,7 +28088,7 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); } public override global::System.Int32 GetHashCode() @@ -28576,20 +28096,345 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQueryResult + { + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IApiDetailPrompt_Api + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Api : IShowApiCommandQuery_Node, IApiDetailPrompt_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_ApiDocument : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_ApiKey : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Client : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_ClientChangeLog : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_ClientDeployment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_ClientVersion : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_CoordinateClientUsageMetrics : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Environment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_FusionConfigurationChangeLog : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_FusionConfigurationDeployment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLDirectiveDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLEnumTypeDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLEnumValueDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLObjectFieldDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLScalarTypeDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_GraphQLUnionTypeDefinition : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Group : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_McpFeatureCollection : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionChangeLog : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionDeployment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_McpFeatureCollectionVersion : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiCollection : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiCollectionChangeLog : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiCollectionDeployment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OpenApiCollectionVersion : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Organization : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_OrganizationMember : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_SchemaChangeLog : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_SchemaDeployment : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Stage : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_User : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Workspace : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_WorkspaceDocument : IShowApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Workspace_1 + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Workspace_Workspace : IShowApiCommandQuery_Node_Workspace_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Settings + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Settings_ApiSettings : IShowApiCommandQuery_Node_Settings + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Settings_SchemaRegistry + { + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings : IShowApiCommandQuery_Node_Settings_SchemaRegistry + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class DeleteApiCommandQueryResult : global::System.IEquatable, IDeleteApiCommandQueryResult { - public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public DeleteApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? node) { + Node = node; } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? Node { get; } + + public virtual global::System.Boolean Equals(DeleteApiCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -28606,7 +28451,7 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -28626,7 +28471,7 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((DeleteApiCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -28634,6 +28479,11 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + if (Node != null) + { + hash ^= 397 * Node.GetHashCode(); + } + return hash; } } @@ -28641,13 +28491,20 @@ public ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class DeleteApiCommandQuery_Node_Api : global::System.IEquatable, IDeleteApiCommandQuery_Node_Api { - public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public DeleteApiCommandQuery_Node_Api(global::System.String name, global::System.String version, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? workspace) { + Name = name; + Version = version; + Workspace = workspace; } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public global::System.String Name { get; } + public global::System.String Version { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? Workspace { get; } + + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -28664,7 +28521,7 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return true; + return (Name.Equals(other.Name)) && Version.Equals(other.Version) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -28684,7 +28541,7 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -28692,6 +28549,13 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Version.GetHashCode(); + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + return hash; } } @@ -28699,13 +28563,13 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class DeleteApiCommandQuery_Node_ApiDocument : global::System.IEquatable, IDeleteApiCommandQuery_Node_ApiDocument { - public ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public DeleteApiCommandQuery_Node_ApiDocument() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -28742,7 +28606,7 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -28757,13 +28621,13 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class DeleteApiCommandQuery_Node_ApiKey : global::System.IEquatable, IDeleteApiCommandQuery_Node_ApiKey { - public ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public DeleteApiCommandQuery_Node_ApiKey() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -28800,7 +28664,7 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -28815,13 +28679,13 @@ public ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class DeleteApiCommandQuery_Node_Client : global::System.IEquatable, IDeleteApiCommandQuery_Node_Client { - public ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public DeleteApiCommandQuery_Node_Client() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -28858,7 +28722,7 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -28873,13 +28737,13 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class DeleteApiCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientChangeLog { - public ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() + public DeleteApiCommandQuery_Node_ClientChangeLog() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -28916,7 +28780,7 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -28931,13 +28795,13 @@ public ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class DeleteApiCommandQuery_Node_ClientDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientDeployment { - public ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() + public DeleteApiCommandQuery_Node_ClientDeployment() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -28974,7 +28838,7 @@ public ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -28989,13 +28853,13 @@ public ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowClientCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class DeleteApiCommandQuery_Node_ClientVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_ClientVersion { - public ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() + public DeleteApiCommandQuery_Node_ClientVersion() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -29032,7 +28896,7 @@ public ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((DeleteApiCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -29047,13 +28911,13 @@ public ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Group : global::System.IEquatable, IShowClientCommandQuery_Node_Group + public partial class DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IDeleteApiCommandQuery_Node_CoordinateClientUsageMetrics { - public ShowClientCommandQuery_Node_Group() + public DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Group? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -29090,7 +28954,7 @@ public ShowClientCommandQuery_Node_Group() return false; } - return Equals((ShowClientCommandQuery_Node_Group)obj); + return Equals((DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -29105,13 +28969,13 @@ public ShowClientCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollection + public partial class DeleteApiCommandQuery_Node_Environment : global::System.IEquatable, IDeleteApiCommandQuery_Node_Environment { - public ShowClientCommandQuery_Node_McpFeatureCollection() + public DeleteApiCommandQuery_Node_Environment() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -29148,7 +29012,7 @@ public ShowClientCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ShowClientCommandQuery_Node_McpFeatureCollection)obj); + return Equals((DeleteApiCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -29163,13 +29027,13 @@ public ShowClientCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class DeleteApiCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_FusionConfigurationChangeLog { - public ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() + public DeleteApiCommandQuery_Node_FusionConfigurationChangeLog() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -29206,7 +29070,7 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((DeleteApiCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -29221,13 +29085,13 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionDeployment + public partial class DeleteApiCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_FusionConfigurationDeployment { - public ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() + public DeleteApiCommandQuery_Node_FusionConfigurationDeployment() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -29264,7 +29128,7 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((DeleteApiCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -29279,13 +29143,13 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowClientCommandQuery_Node_McpFeatureCollectionVersion + public partial class DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public ShowClientCommandQuery_Node_McpFeatureCollectionVersion() + public DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29322,7 +29186,7 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ShowClientCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29337,13 +29201,13 @@ public ShowClientCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollection + public partial class DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLDirectiveDefinition { - public ShowClientCommandQuery_Node_OpenApiCollection() + public DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29380,7 +29244,7 @@ public ShowClientCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ShowClientCommandQuery_Node_OpenApiCollection)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29395,13 +29259,13 @@ public ShowClientCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionChangeLog + public partial class DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition { - public ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() + public DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29438,7 +29302,7 @@ public ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ShowClientCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29453,13 +29317,13 @@ public ShowClientCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionDeployment + public partial class DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLEnumValueDefinition { - public ShowClientCommandQuery_Node_OpenApiCollectionDeployment() + public DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29496,7 +29360,7 @@ public ShowClientCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ShowClientCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29511,13 +29375,13 @@ public ShowClientCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowClientCommandQuery_Node_OpenApiCollectionVersion + public partial class DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public ShowClientCommandQuery_Node_OpenApiCollectionVersion() + public DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29554,7 +29418,7 @@ public ShowClientCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ShowClientCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29569,13 +29433,13 @@ public ShowClientCommandQuery_Node_OpenApiCollectionVersion() // 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 + public partial class DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public ShowClientCommandQuery_Node_Organization() + public DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29612,7 +29476,7 @@ public ShowClientCommandQuery_Node_Organization() return false; } - return Equals((ShowClientCommandQuery_Node_Organization)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29627,13 +29491,13 @@ public ShowClientCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowClientCommandQuery_Node_OrganizationMember + public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public ShowClientCommandQuery_Node_OrganizationMember() + public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29670,7 +29534,7 @@ public ShowClientCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowClientCommandQuery_Node_OrganizationMember)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29685,13 +29549,13 @@ public ShowClientCommandQuery_Node_OrganizationMember() // 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 + public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public ShowClientCommandQuery_Node_SchemaChangeLog() + public DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29728,7 +29592,7 @@ public ShowClientCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ShowClientCommandQuery_Node_SchemaChangeLog)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29743,13 +29607,13 @@ public ShowClientCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowClientCommandQuery_Node_SchemaDeployment + public partial class DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public ShowClientCommandQuery_Node_SchemaDeployment() + public DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29786,7 +29650,7 @@ public ShowClientCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ShowClientCommandQuery_Node_SchemaDeployment)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29801,13 +29665,13 @@ public ShowClientCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Stage : global::System.IEquatable, IShowClientCommandQuery_Node_Stage + public partial class DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public ShowClientCommandQuery_Node_Stage() + public DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29844,7 +29708,7 @@ public ShowClientCommandQuery_Node_Stage() return false; } - return Equals((ShowClientCommandQuery_Node_Stage)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29859,13 +29723,13 @@ public ShowClientCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_User : global::System.IEquatable, IShowClientCommandQuery_Node_User + public partial class DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition { - public ShowClientCommandQuery_Node_User() + public DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29902,7 +29766,7 @@ public ShowClientCommandQuery_Node_User() return false; } - return Equals((ShowClientCommandQuery_Node_User)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29917,13 +29781,13 @@ public ShowClientCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Workspace : global::System.IEquatable, IShowClientCommandQuery_Node_Workspace + public partial class DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition { - public ShowClientCommandQuery_Node_Workspace() + public DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -29960,7 +29824,7 @@ public ShowClientCommandQuery_Node_Workspace() return false; } - return Equals((ShowClientCommandQuery_Node_Workspace)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -29975,13 +29839,13 @@ public ShowClientCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowClientCommandQuery_Node_WorkspaceDocument + public partial class DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IDeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition { - public ShowClientCommandQuery_Node_WorkspaceDocument() + public DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -30018,7 +29882,7 @@ public ShowClientCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ShowClientCommandQuery_Node_WorkspaceDocument)obj); + return Equals((DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -30033,18 +29897,13 @@ public ShowClientCommandQuery_Node_WorkspaceDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Api_Api : global::System.IEquatable, IShowClientCommandQuery_Node_Api_Api + public partial class DeleteApiCommandQuery_Node_Group : global::System.IEquatable, IDeleteApiCommandQuery_Node_Group { - public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + public DeleteApiCommandQuery_Node_Group() { - Name = name; - Path = path; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Api_Api? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -30061,7 +29920,7 @@ public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::S return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30081,7 +29940,7 @@ public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::S return false; } - return Equals((ShowClientCommandQuery_Node_Api_Api)obj); + return Equals((DeleteApiCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -30089,40 +29948,20 @@ public ShowClientCommandQuery_Node_Api_Api(global::System.String name, global::S unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_ClientVersionConnection : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_ClientVersionConnection + public partial class DeleteApiCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollection { - public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) + public DeleteApiCommandQuery_Node_McpFeatureCollection() { - Edges = edges; - PageInfo = pageInfo; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -30139,7 +29978,7 @@ public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::Syst return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30159,7 +29998,7 @@ public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::Syst return false; } - return Equals((ShowClientCommandQuery_Node_Versions_ClientVersionConnection)obj); + return Equals((DeleteApiCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -30167,43 +30006,20 @@ public ShowClientCommandQuery_Node_Versions_ClientVersionConnection(global::Syst unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge + public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog { - public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog() { - Cursor = cursor; - Node = node; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -30220,7 +30036,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::Syst return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30240,7 +30056,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::Syst return false; } - return Equals((ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge)obj); + return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -30248,36 +30064,20 @@ public ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(global::Syst unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_PageInfo_PageInfo + public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionDeployment { - public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment() { - HasNextPage = hasNextPage; - EndCursor = endCursor; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -30294,7 +30094,7 @@ public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boo return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30314,7 +30114,7 @@ public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boo return false; } - return Equals((ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo)obj); + return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -30322,12 +30122,6 @@ public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boo unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - return hash; } } @@ -30335,22 +30129,13 @@ public ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(global::System.Boo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion + public partial class DeleteApiCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_McpFeatureCollectionVersion { - public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public DeleteApiCommandQuery_Node_McpFeatureCollectionVersion() { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -30367,7 +30152,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::Sys return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30387,7 +30172,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::Sys return false; } - return Equals((ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion)obj); + return Equals((DeleteApiCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -30395,14 +30180,6 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::Sys unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) - { - hash ^= 397 * PublishedTo_elm.GetHashCode(); - } - return hash; } } @@ -30410,16 +30187,13 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(global::Sys // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class DeleteApiCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollection { - public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public DeleteApiCommandQuery_Node_OpenApiCollection() { - Stage = stage; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -30436,7 +30210,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClie return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30456,7 +30230,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClie return false; } - return Equals((ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((DeleteApiCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -30464,11 +30238,6 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClie unchecked { int hash = 5; - if (Stage != null) - { - hash ^= 397 * Stage.GetHashCode(); - } - return hash; } } @@ -30476,16 +30245,13 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClie // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionChangeLog { - public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog() { - Name = name; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -30502,7 +30268,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(g return false; } - return (Name.Equals(other.Name)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30522,7 +30288,7 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(g return false; } - return Equals((ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -30530,415 +30296,20 @@ public ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(g unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQueryResult - { - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Api : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_ApiDocument : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_ApiKey : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Client : IShowClientCommandQuery_Node, IClientDetailPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_ClientChangeLog : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_ClientDeployment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_ClientVersion : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_CoordinateClientUsageMetrics : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Environment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_FusionConfigurationChangeLog : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_FusionConfigurationDeployment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLDirectiveDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLEnumTypeDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLEnumValueDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLObjectFieldDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLScalarTypeDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_GraphQLUnionTypeDefinition : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Group : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_McpFeatureCollection : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionChangeLog : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionDeployment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_McpFeatureCollectionVersion : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_OpenApiCollection : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_OpenApiCollectionChangeLog : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_OpenApiCollectionDeployment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_OpenApiCollectionVersion : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Organization : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_OrganizationMember : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_SchemaChangeLog : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_SchemaDeployment : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Stage : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_User : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Workspace : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_WorkspaceDocument : IShowClientCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Api_1 - { - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Api_Api : IShowClientCommandQuery_Node_Api_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_ClientVersionConnection : IShowClientCommandQuery_Node_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge : IShowClientCommandQuery_Node_Versions_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_PageInfo_PageInfo : IShowClientCommandQuery_Node_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion : IShowClientCommandQuery_Node_Versions_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientResult : global::System.IEquatable, IUnpublishClientResult + public partial class DeleteApiCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionDeployment { - public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient unpublishClient) + public DeleteApiCommandQuery_Node_OpenApiCollectionDeployment() { - UnpublishClient = unpublishClient; } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient UnpublishClient { get; } - - public virtual global::System.Boolean Equals(UnpublishClientResult? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -30955,7 +30326,7 @@ public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpub return false; } - return (UnpublishClient.Equals(other.UnpublishClient)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -30975,7 +30346,7 @@ public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpub return false; } - return Equals((UnpublishClientResult)obj); + return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -30983,7 +30354,6 @@ public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpub unchecked { int hash = 5; - hash ^= 397 * UnpublishClient.GetHashCode(); return hash; } } @@ -30991,18 +30361,13 @@ public UnpublishClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUnpub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_UnpublishClientPayload : global::System.IEquatable, IUnpublishClient_UnpublishClient_UnpublishClientPayload + public partial class DeleteApiCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IDeleteApiCommandQuery_Node_OpenApiCollectionVersion { - public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public DeleteApiCommandQuery_Node_OpenApiCollectionVersion() { - ClientVersion = clientVersion; - Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? ClientVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_UnpublishClientPayload? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -31019,7 +30384,7 @@ public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCrea return false; } - return (((ClientVersion is null && other.ClientVersion is null) || ClientVersion != null && ClientVersion.Equals(other.ClientVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31039,7 +30404,7 @@ public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCrea return false; } - return Equals((UnpublishClient_UnpublishClient_UnpublishClientPayload)obj); + return Equals((DeleteApiCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -31047,19 +30412,6 @@ public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCrea unchecked { int hash = 5; - if (ClientVersion != null) - { - hash ^= 397 * ClientVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - return hash; } } @@ -31067,18 +30419,13 @@ public UnpublishClient_UnpublishClient_UnpublishClientPayload(global::ChilliCrea // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_ClientVersion_ClientVersion : global::System.IEquatable, IUnpublishClient_UnpublishClient_ClientVersion_ClientVersion + public partial class DeleteApiCommandQuery_Node_Organization : global::System.IEquatable, IDeleteApiCommandQuery_Node_Organization { - public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? client) + public DeleteApiCommandQuery_Node_Organization() { - Id = id; - Client = client; } - public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? Client { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_ClientVersion_ClientVersion? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -31095,7 +30442,7 @@ public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::Syste return false; } - return (Id.Equals(other.Id)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31115,7 +30462,7 @@ public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::Syste return false; } - return Equals((UnpublishClient_UnpublishClient_ClientVersion_ClientVersion)obj); + return Equals((DeleteApiCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -31123,12 +30470,6 @@ public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::Syste unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - return hash; } } @@ -31136,23 +30477,13 @@ public UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(global::Syste // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_Errors_StageNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_StageNotFoundError + public partial class DeleteApiCommandQuery_Node_OrganizationMember : global::System.IEquatable, IDeleteApiCommandQuery_Node_OrganizationMember { - public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public DeleteApiCommandQuery_Node_OrganizationMember() { - this.__typename = __typename; - Message = message; - Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -31169,7 +30500,7 @@ public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System. return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31189,7 +30520,7 @@ public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System. return false; } - return Equals((UnpublishClient_UnpublishClient_Errors_StageNotFoundError)obj); + return Equals((DeleteApiCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -31197,9 +30528,6 @@ public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System. unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -31207,18 +30535,13 @@ public UnpublishClient_UnpublishClient_Errors_StageNotFoundError(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_Errors_ClientNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ClientNotFoundError + public partial class DeleteApiCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IDeleteApiCommandQuery_Node_SchemaChangeLog { - public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) + public DeleteApiCommandQuery_Node_SchemaChangeLog() { - Message = message; - ClientId = clientId; } - public global::System.String Message { get; } - public global::System.String ClientId { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ClientNotFoundError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -31235,7 +30558,7 @@ public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System return false; } - return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31255,7 +30578,7 @@ public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System return false; } - return Equals((UnpublishClient_UnpublishClient_Errors_ClientNotFoundError)obj); + return Equals((DeleteApiCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -31263,8 +30586,6 @@ public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -31272,21 +30593,13 @@ public UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_UnauthorizedOperation + public partial class DeleteApiCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IDeleteApiCommandQuery_Node_SchemaDeployment { - public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public DeleteApiCommandQuery_Node_SchemaDeployment() { - this.__typename = __typename; - Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -31303,7 +30616,7 @@ public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::Syst return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31323,7 +30636,7 @@ public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::Syst return false; } - return Equals((UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation)obj); + return Equals((DeleteApiCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -31331,8 +30644,6 @@ public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::Syst unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -31340,20 +30651,13 @@ public UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(global::Syst // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError + public partial class DeleteApiCommandQuery_Node_Stage : global::System.IEquatable, IDeleteApiCommandQuery_Node_Stage { - public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String clientId) + public DeleteApiCommandQuery_Node_Stage() { - Tag = tag; - Message = message; - ClientId = clientId; } - public global::System.String Tag { get; } - public global::System.String Message { get; } - public global::System.String ClientId { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -31370,7 +30674,7 @@ public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global: return false; } - return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && ClientId.Equals(other.ClientId); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31390,7 +30694,7 @@ public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global: return false; } - return Equals((UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError)obj); + return Equals((DeleteApiCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -31398,9 +30702,6 @@ public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global: unchecked { int hash = 5; - hash ^= 397 * Tag.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); return hash; } } @@ -31408,21 +30709,13 @@ public UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError : global::System.IEquatable, IUnpublishClient_UnpublishClient_Errors_ConcurrentOperationError + public partial class DeleteApiCommandQuery_Node_User : global::System.IEquatable, IDeleteApiCommandQuery_Node_User { - public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public DeleteApiCommandQuery_Node_User() { - this.__typename = __typename; - Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -31439,7 +30732,7 @@ public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31459,7 +30752,7 @@ public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::S return false; } - return Equals((UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError)obj); + return Equals((DeleteApiCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -31467,8 +30760,6 @@ public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::S unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -31476,16 +30767,13 @@ public UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClient_UnpublishClient_ClientVersion_Client_Client : global::System.IEquatable, IUnpublishClient_UnpublishClient_ClientVersion_Client_Client + public partial class DeleteApiCommandQuery_Node_Workspace : global::System.IEquatable, IDeleteApiCommandQuery_Node_Workspace { - public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::System.String name) + public DeleteApiCommandQuery_Node_Workspace() { - Name = name; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(UnpublishClient_UnpublishClient_ClientVersion_Client_Client? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -31502,7 +30790,7 @@ public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::Syste return false; } - return (Name.Equals(other.Name)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31522,7 +30810,7 @@ public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::Syste return false; } - return Equals((UnpublishClient_UnpublishClient_ClientVersion_Client_Client)obj); + return Equals((DeleteApiCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -31530,108 +30818,20 @@ public UnpublishClient_UnpublishClient_ClientVersion_Client_Client(global::Syste unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClientResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient UnpublishClient { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient - { - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? ClientVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_UnpublishClientPayload : IUnpublishClient_UnpublishClient - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_ClientVersion - { - public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? Client { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_ClientVersion_ClientVersion : IUnpublishClient_UnpublishClient_ClientVersion - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors_StageNotFoundError : IUnpublishClient_UnpublishClient_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors_ClientNotFoundError : IUnpublishClient_UnpublishClient_Errors, IClientNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors_UnauthorizedOperation : IUnpublishClient_UnpublishClient_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError : IUnpublishClient_UnpublishClient_Errors, IClientVersionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_Errors_ConcurrentOperationError : IUnpublishClient_UnpublishClient_Errors, IConcurrentOperationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_ClientVersion_Client - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClient_UnpublishClient_ClientVersion_Client_Client : IUnpublishClient_UnpublishClient_ClientVersion_Client - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientResult : global::System.IEquatable, IUploadClientResult + public partial class DeleteApiCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IDeleteApiCommandQuery_Node_WorkspaceDocument { - public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient uploadClient) + public DeleteApiCommandQuery_Node_WorkspaceDocument() { - UploadClient = uploadClient; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient UploadClient { get; } - - public virtual global::System.Boolean Equals(UploadClientResult? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -31648,7 +30848,7 @@ public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadCl return false; } - return (UploadClient.Equals(other.UploadClient)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31668,7 +30868,7 @@ public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadCl return false; } - return Equals((UploadClientResult)obj); + return Equals((DeleteApiCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -31676,7 +30876,6 @@ public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadCl unchecked { int hash = 5; - hash ^= 397 * UploadClient.GetHashCode(); return hash; } } @@ -31684,18 +30883,16 @@ public UploadClientResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadCl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_UploadClientPayload : global::System.IEquatable, IUploadClient_UploadClient_UploadClientPayload + public partial class DeleteApiCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IDeleteApiCommandQuery_Node_Workspace_Workspace { - public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? clientVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public DeleteApiCommandQuery_Node_Workspace_Workspace(global::System.String id) { - ClientVersion = clientVersion; - Errors = errors; + Id = id; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? ClientVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_UploadClientPayload? other) + public virtual global::System.Boolean Equals(DeleteApiCommandQuery_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -31712,7 +30909,7 @@ public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.C return false; } - return (((ClientVersion is null && other.ClientVersion is null) || ClientVersion != null && ClientVersion.Equals(other.ClientVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31732,7 +30929,7 @@ public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.C return false; } - return Equals((UploadClient_UploadClient_UploadClientPayload)obj); + return Equals((DeleteApiCommandQuery_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -31740,168 +30937,311 @@ public UploadClient_UploadClient_UploadClientPayload(global::ChilliCream.Nitro.C unchecked { int hash = 5; - if (ClientVersion != null) - { - hash ^= 397 * ClientVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * Id.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_ClientVersion_ClientVersion : global::System.IEquatable, IUploadClient_UploadClient_ClientVersion_ClientVersion + public partial interface IDeleteApiCommandQueryResult { - public UploadClient_UploadClient_ClientVersion_ClientVersion(global::System.String id) - { - Id = id; - } - - public global::System.String Id { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? Node { get; } + } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_ClientVersion_ClientVersion? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Api + { + public global::System.String Name { get; } + public global::System.String Version { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? Workspace { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Api : IDeleteApiCommandQuery_Node, IDeleteApiCommandQuery_Api + { + } - return (Id.Equals(other.Id)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_ApiDocument : IDeleteApiCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_ApiKey : IDeleteApiCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Client : IDeleteApiCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_ClientChangeLog : IDeleteApiCommandQuery_Node + { + } - return Equals((UploadClient_UploadClient_ClientVersion_ClientVersion)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_ClientDeployment : IDeleteApiCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_ClientVersion : IDeleteApiCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_Errors_ClientNotFoundError : global::System.IEquatable, IUploadClient_UploadClient_Errors_ClientNotFoundError + public partial interface IDeleteApiCommandQuery_Node_CoordinateClientUsageMetrics : IDeleteApiCommandQuery_Node { - public UploadClient_UploadClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) - { - Message = message; - ClientId = clientId; - } + } - public global::System.String Message { get; } - public global::System.String ClientId { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Environment : IDeleteApiCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_ClientNotFoundError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationChangeLog : IDeleteApiCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_FusionConfigurationDeployment : IDeleteApiCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IDeleteApiCommandQuery_Node + { + } - return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLDirectiveDefinition : IDeleteApiCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition : IDeleteApiCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLEnumValueDefinition : IDeleteApiCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition : IDeleteApiCommandQuery_Node + { + } - return Equals((UploadClient_UploadClient_Errors_ClientNotFoundError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition : IDeleteApiCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Group : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollection : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionDeployment : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_McpFeatureCollectionVersion : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiCollection : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionChangeLog : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionDeployment : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OpenApiCollectionVersion : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Organization : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_OrganizationMember : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_SchemaChangeLog : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_SchemaDeployment : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Stage : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_User : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Workspace : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_WorkspaceDocument : IDeleteApiCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Workspace_1 + { + public global::System.String Id { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandQuery_Node_Workspace_Workspace : IDeleteApiCommandQuery_Node_Workspace_1 + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadClient_UploadClient_Errors_ConcurrentOperationError + public partial class DeleteApiCommandMutationResult : global::System.IEquatable, IDeleteApiCommandMutationResult { - public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public DeleteApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById deleteApiById) { - this.__typename = __typename; - Message = message; + DeleteApiById = deleteApiById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById DeleteApiById { get; } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -31918,7 +31258,7 @@ public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System. return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (DeleteApiById.Equals(other.DeleteApiById)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -31938,7 +31278,7 @@ public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System. return false; } - return Equals((UploadClient_UploadClient_Errors_ConcurrentOperationError)obj); + return Equals((DeleteApiCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -31946,8 +31286,7 @@ public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System. unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * DeleteApiById.GetHashCode(); return hash; } } @@ -31955,16 +31294,18 @@ public UploadClient_UploadClient_Errors_ConcurrentOperationError(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_Errors_InvalidPersistedQueryError : global::System.IEquatable, IUploadClient_UploadClient_Errors_InvalidPersistedQueryError + public partial class DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload { - public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::System.String message) + public DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) { - Message = message; + Api = api; + Errors = errors; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_InvalidPersistedQueryError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload? other) { if (ReferenceEquals(null, other)) { @@ -31981,7 +31322,7 @@ public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::Syste return false; } - return (Message.Equals(other.Message)); + return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32001,7 +31342,7 @@ public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::Syste return false; } - return Equals((UploadClient_UploadClient_Errors_InvalidPersistedQueryError)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload)obj); } public override global::System.Int32 GetHashCode() @@ -32009,7 +31350,19 @@ public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::Syste unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + if (Api != null) + { + hash ^= 397 * Api.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -32017,21 +31370,24 @@ public UploadClient_UploadClient_Errors_InvalidPersistedQueryError(global::Syste // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadClient_UploadClient_Errors_UnauthorizedOperation + public partial class DeleteApiCommandMutation_DeleteApiById_Api_Api : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Api { - public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public DeleteApiCommandMutation_DeleteApiById_Api_Api(global::System.String name, global::System.String id, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) { - this.__typename = __typename; - Message = message; + Name = name; + Id = id; + Path = path; + Workspace = workspace; + Settings = settings; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -32048,7 +31404,7 @@ public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.Str return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Name.Equals(other.Name)) && Id.Equals(other.Id) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32068,7 +31424,7 @@ public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.Str return false; } - return Equals((UploadClient_UploadClient_Errors_UnauthorizedOperation)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -32076,8 +31432,19 @@ public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.Str unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + + hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -32085,21 +31452,16 @@ public UploadClient_UploadClient_Errors_UnauthorizedOperation(global::System.Str // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClient_UploadClient_Errors_DuplicatedTagError : global::System.IEquatable, IUploadClient_UploadClient_Errors_DuplicatedTagError + public partial class DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError { - public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) + public DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(global::System.String message) { - this.__typename = __typename; Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(UploadClient_UploadClient_Errors_DuplicatedTagError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -32116,7 +31478,7 @@ public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32136,7 +31498,7 @@ public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String return false; } - return Equals((UploadClient_UploadClient_Errors_DuplicatedTagError)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -32144,105 +31506,24 @@ public UploadClient_UploadClient_Errors_DuplicatedTagError(global::System.String unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClientResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient UploadClient { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? ClientVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_UploadClientPayload : IUploadClient_UploadClient - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_ClientVersion - { - public global::System.String Id { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_ClientVersion_ClientVersion : IUploadClient_UploadClient_ClientVersion - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_Errors_ClientNotFoundError : IUploadClient_UploadClient_Errors, IClientNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_Errors_ConcurrentOperationError : IUploadClient_UploadClient_Errors, IConcurrentOperationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_Errors_InvalidPersistedQueryError : IUploadClient_UploadClient_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClient_UploadClient_Errors_UnauthorizedOperation : IUploadClient_UploadClient_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDuplicatedTagError : 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 IUploadClient_UploadClient_Errors_DuplicatedTagError : IUploadClient_UploadClient_Errors, IDuplicatedTagError - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionResult : global::System.IEquatable, IValidateClientVersionResult + public partial class DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation { - public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient validateClient) + public DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(global::System.String message) { - ValidateClient = validateClient; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient ValidateClient { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateClientVersionResult? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -32259,7 +31540,7 @@ public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client. return false; } - return (ValidateClient.Equals(other.ValidateClient)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32279,7 +31560,7 @@ public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client. return false; } - return Equals((ValidateClientVersionResult)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -32287,7 +31568,7 @@ public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client. unchecked { int hash = 5; - hash ^= 397 * ValidateClient.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -32295,18 +31576,16 @@ public ValidateClientVersionResult(global::ChilliCream.Nitro.CommandLine.Client. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersion_ValidateClient_ValidateClientPayload : global::System.IEquatable, IValidateClientVersion_ValidateClient_ValidateClientPayload + public partial class DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError { - public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(global::System.String message) { - Id = id; - Errors = errors; + Message = message; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_ValidateClientPayload? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError? other) { if (ReferenceEquals(null, other)) { @@ -32323,7 +31602,7 @@ public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32343,7 +31622,7 @@ public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System return false; } - return Equals((ValidateClientVersion_ValidateClient_ValidateClientPayload)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError)obj); } public override global::System.Int32 GetHashCode() @@ -32351,19 +31630,7 @@ public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System unchecked { int hash = 5; - if (Id != null) - { - hash ^= 397 * Id.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -32371,23 +31638,18 @@ public ValidateClientVersion_ValidateClient_ValidateClientPayload(global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersion_ValidateClient_Errors_StageNotFoundError : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_StageNotFoundError + public partial class DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace { - public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace(global::System.String id, global::System.String name) { - this.__typename = __typename; - Message = message; + Id = id; Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -32404,7 +31666,7 @@ public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::Sy return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32424,7 +31686,7 @@ public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::Sy return false; } - return Equals((ValidateClientVersion_ValidateClient_Errors_StageNotFoundError)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -32432,8 +31694,7 @@ public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::Sy unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); return hash; } @@ -32442,18 +31703,16 @@ public ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_ClientNotFoundError + public partial class DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings { - public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::System.String message, global::System.String clientId) + public DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) { - Message = message; - ClientId = clientId; + SchemaRegistry = schemaRegistry; } - public global::System.String Message { get; } - public global::System.String ClientId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } - public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings? other) { if (ReferenceEquals(null, other)) { @@ -32470,7 +31729,7 @@ public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::S return false; } - return (Message.Equals(other.Message)) && ClientId.Equals(other.ClientId); + return (SchemaRegistry.Equals(other.SchemaRegistry)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32490,7 +31749,7 @@ public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::S return false; } - return Equals((ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings)obj); } public override global::System.Int32 GetHashCode() @@ -32498,8 +31757,7 @@ public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::S unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ClientId.GetHashCode(); + hash ^= 397 * SchemaRegistry.GetHashCode(); return hash; } } @@ -32507,21 +31765,18 @@ public ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation + public partial class DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings { - public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) { - this.__typename = __typename; - Message = message; + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } - public virtual global::System.Boolean Equals(ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings? other) { if (ReferenceEquals(null, other)) { @@ -32538,7 +31793,7 @@ public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32558,7 +31813,7 @@ public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global: return false; } - return Equals((ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation)obj); + return Equals((DeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings)obj); } public override global::System.Int32 GetHashCode() @@ -32566,8 +31821,8 @@ public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global: unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } @@ -32575,130 +31830,114 @@ public ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersionResult + public partial interface IDeleteApiCommandMutationResult { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient ValidateClient { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById DeleteApiById { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient + public partial interface IDeleteApiCommandMutation_DeleteApiById { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient_ValidateClientPayload : IValidateClientVersion_ValidateClient + public partial interface IDeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload : IDeleteApiCommandMutation_DeleteApiById { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient_Errors + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api : IApiDetailPrompt_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient_Errors_StageNotFoundError : IValidateClientVersion_ValidateClient_Errors, IStageNotFoundError + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Api : IDeleteApiCommandMutation_DeleteApiById_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient_Errors_ClientNotFoundError : IValidateClientVersion_ValidateClient_Errors, IClientNotFoundError + public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation : IValidateClientVersion_ValidateClient_Errors, IUnauthorizedOperation + public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError : IDeleteApiCommandMutation_DeleteApiById_Errors, IError { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedResult : global::System.IEquatable, IOnClientVersionValidationUpdatedResult + public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation : IDeleteApiCommandMutation_DeleteApiById_Errors, IError { - public OnClientVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate onClientVersionValidationUpdate) - { - OnClientVersionValidationUpdate = onClientVersionValidationUpdate; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate OnClientVersionValidationUpdate { get; } - - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdatedResult? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError : IDeleteApiCommandMutation_DeleteApiById_Errors, IError + { + } - return (OnClientVersionValidationUpdate.Equals(other.OnClientVersionValidationUpdate)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Workspace + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Workspace_Workspace : IDeleteApiCommandMutation_DeleteApiById_Api_Workspace + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_ApiSettings : IDeleteApiCommandMutation_DeleteApiById_Api_Settings + { + } - return Equals((OnClientVersionValidationUpdatedResult)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry + { + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * OnClientVersionValidationUpdate.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry_SchemaRegistrySettings : IDeleteApiCommandMutation_DeleteApiById_Api_Settings_SchemaRegistry + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed + public partial class ListApiCommandQueryResult : global::System.IEquatable, IListApiCommandQueryResult { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public ListApiCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? workspaceById) { - this.__typename = __typename; - State = state; - Errors = errors; + WorkspaceById = workspaceById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? WorkspaceById { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed? other) + public virtual global::System.Boolean Equals(ListApiCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -32715,7 +31954,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32735,7 +31974,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed)obj); + return Equals((ListApiCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -32743,11 +31982,9 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) + if (WorkspaceById != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * WorkspaceById.GetHashCode(); } return hash; @@ -32757,21 +31994,16 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess + public partial class ListApiCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Workspace { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public ListApiCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? apis) { - this.__typename = __typename; - State = state; + Apis = apis; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? Apis { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -32788,7 +32020,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (((Apis is null && other.Apis is null) || Apis != null && Apis.Equals(other.Apis))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32808,7 +32040,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -32816,30 +32048,39 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVe unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + if (Apis != null) + { + hash ^= 397 * Apis.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress + public partial class ListApiCommandQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_ApisConnection { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo pageInfo) { - this.__typename = __typename; - State = state; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_ApisConnection? other) { if (ReferenceEquals(null, other)) { @@ -32856,7 +32097,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Operatio return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32876,7 +32117,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Operatio return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_ApisConnection)obj); } public override global::System.Int32 GetHashCode() @@ -32884,30 +32125,43 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Operatio unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress + public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node node) { - this.__typename = __typename; - State = state; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge? other) { if (ReferenceEquals(null, other)) { @@ -32924,7 +32178,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Validati return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -32944,7 +32198,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Validati return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge)obj); } public override global::System.Int32 GetHashCode() @@ -32952,29 +32206,46 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Validati unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError + public partial class ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - Message = message; - Client = client; - Queries = queries; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -32991,7 +32262,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33011,7 +32282,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -33019,15 +32290,16 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Client.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); } - foreach (var Queries_elm in Queries) + if (StartCursor != null) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -33037,21 +32309,24 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError + public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) { - this.__typename = __typename; - Message = message; + Id = id; + Name = name; + Path = path; + Workspace = workspace; + Settings = settings; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -33068,7 +32343,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33088,7 +32363,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -33096,8 +32371,19 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + + hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -33105,13 +32391,18 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_P // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError + public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError() + public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -33128,7 +32419,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_R return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33148,7 +32439,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_R return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -33156,6 +32447,8 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_R unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -33163,21 +32456,16 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_R // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError + public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) { - this.__typename = __typename; - Message = message; + SchemaRegistry = schemaRegistry; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings? other) { if (ReferenceEquals(null, other)) { @@ -33194,7 +32482,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_U return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (SchemaRegistry.Equals(other.SchemaRegistry)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33214,7 +32502,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_U return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings)obj); } public override global::System.Int32 GetHashCode() @@ -33222,8 +32510,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_U unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * SchemaRegistry.GetHashCode(); return hash; } } @@ -33231,18 +32518,18 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_U // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client + public partial class ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) + public ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) { - Id = id; - Name = name; + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) { if (ReferenceEquals(null, other)) { @@ -33259,7 +32546,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_C return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33279,7 +32566,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_C return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client)obj); + return Equals((ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); } public override global::System.Int32 GetHashCode() @@ -33287,48 +32574,200 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed + public partial interface IListApiCommandQueryResult { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) - { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; - } - - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? WorkspaceById { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById + { + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? Apis { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Workspace : IListApiCommandQuery_WorkspaceById + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_ApisConnection : IListApiCommandQuery_WorkspaceById_Apis + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommand_ApiEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges : IListApiCommand_ApiEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge : IListApiCommandQuery_WorkspaceById_Apis_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo : IListApiCommandQuery_WorkspaceById_Apis_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommand_Api : IApiDetailPrompt_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node : IListApiCommand_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + { + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : IListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetApiSettingsCommandMutationResult : global::System.IEquatable, ISetApiSettingsCommandMutationResult + { + public SetApiSettingsCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings updateApiSettings) + { + UpdateApiSettings = updateApiSettings; + } + + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings UpdateApiSettings { get; } + + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutationResult? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (UpdateApiSettings.Equals(other.UpdateApiSettings)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33348,7 +32787,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((SetApiSettingsCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -33356,16 +32795,81 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) + hash ^= 397 * UpdateApiSettings.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload + { + public SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) + { + Api = api; + Errors = errors; + } + + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + } + + 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((SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Api != null) { - hash ^= 397 * DeployedTags_elm.GetHashCode(); + hash ^= 397 * Api.GetHashCode(); } - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) + if (Errors != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -33375,22 +32879,24 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Api { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) { - Message = message; - Code = code; + Name = name; Path = path; - Locations = locations; + Id = id; + Workspace = workspace; + Settings = settings; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -33407,7 +32913,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && Id.Equals(other.Id) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33427,7 +32933,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -33435,25 +32941,19 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) { - hash ^= 397 * Path.GetHashCode(); + hash ^= 397 * Path_elm.GetHashCode(); } - if (Locations != null) + hash ^= 397 * Id.GetHashCode(); + if (Workspace != null) { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } + hash ^= 397 * Workspace.GetHashCode(); } + hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -33461,18 +32961,23 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError { - public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { - Column = column; - Line = line; + this.__typename = __typename; + Message = message; + ApiId = apiId; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -33489,7 +32994,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -33509,7 +33014,7 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q return false; } - return Equals((OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + return Equals((SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -33517,175 +33022,390 @@ public OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdatedResult + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate OnClientVersionValidationUpdate { get; } - } + public SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + { + this.__typename = __typename; + Message = message; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate - { + /// + /// The name of the current Object type at runtime. + /// public global::System.String __typename { get; } - } + public global::System.String Message { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientVersionValidationFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + } + + 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((SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationFailed + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace { + public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace(global::System.String id, global::System.String name) + { + Id = id; + Name = name; + } + + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Id.Equals(other.Id)) && Name.Equals(other.Name); + } + + 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((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IClientVersionValidationSuccess + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) + { + SchemaRegistry = schemaRegistry; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (SchemaRegistry.Equals(other.SchemaRegistry)); + } + + 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((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * SchemaRegistry.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IClientVersionValidationSuccess + public partial class SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings { + public SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) + { + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + } + + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + + public virtual global::System.Boolean Equals(SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); + } + + 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((SetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IOperationInProgress + public partial interface ISetApiSettingsCommandMutationResult { + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings UpdateApiSettings { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidationInProgress + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate, IValidationInProgress + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload : ISetApiSettingsCommandMutation_UpdateApiSettings { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors + public partial interface ISelectApiPrompt_Api : IApiDetailPrompt_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IPersistedQueryValidationError + public partial interface ISetApiSettingsCommandMutation_Api : ISelectApiPrompt_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IProcessingTimeoutError + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api : ISetApiSettingsCommandMutation_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Api : ISetApiSettingsCommandMutation_UpdateApiSettings_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors, IUnexpectedProcessingError + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError : ISetApiSettingsCommandMutation_UpdateApiSettings_Errors, IApiNotFoundError { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation : ISetApiSettingsCommandMutation_UpdateApiSettings_Errors, IUnauthorizedOperation { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace_Workspace : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Workspace { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_ApiSettings : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations + public partial interface ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry_SchemaRegistrySettings : ISetApiSettingsCommandMutation_UpdateApiSettings_Api_Settings_SchemaRegistry { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationResult : global::System.IEquatable, ICreateEnvironmentCommandMutationResult + public partial class CreateApiCommandMutationResult : global::System.IEquatable, ICreateApiCommandMutationResult { - public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) + public CreateApiCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) { PushWorkspaceChanges = pushWorkspaceChanges; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutationResult? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -33722,7 +33442,7 @@ public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandL return false; } - return Equals((CreateEnvironmentCommandMutationResult)obj); + return Equals((CreateApiCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -33738,18 +33458,18 @@ public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandL // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload + public partial class CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) + public CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) { Changes = changes; Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList? Changes { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload? other) { if (ReferenceEquals(null, other)) { @@ -33786,7 +33506,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChange return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload)obj); } public override global::System.Int32 GetHashCode() @@ -33817,9 +33537,9 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChange // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(global::System.String referenceId, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? error, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? result) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(global::System.String referenceId, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? error, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? result) { ReferenceId = referenceId; Error = error; @@ -33827,10 +33547,10 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceCh } public global::System.String ReferenceId { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload? other) { if (ReferenceEquals(null, other)) { @@ -33867,7 +33587,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceCh return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload)obj); } public override global::System.Int32 GetHashCode() @@ -33893,16 +33613,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceCh // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -33939,7 +33659,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_Unauthorized return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -33955,16 +33675,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_Unauthorized // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid? other) { if (ReferenceEquals(null, other)) { @@ -34001,7 +33721,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStruct return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid)obj); } public override global::System.Int32 GetHashCode() @@ -34017,16 +33737,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStruct // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -34063,7 +33783,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Chang return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -34079,16 +33799,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Chang // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict? other) { if (ReferenceEquals(null, other)) { @@ -34125,7 +33845,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict)obj); } public override global::System.Int32 GetHashCode() @@ -34141,16 +33861,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict? other) { if (ReferenceEquals(null, other)) { @@ -34187,7 +33907,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict)obj); } public override global::System.Int32 GetHashCode() @@ -34203,16 +33923,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict? other) { if (ReferenceEquals(null, other)) { @@ -34249,7 +33969,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Ident return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict)obj); } public override global::System.Int32 GetHashCode() @@ -34265,16 +33985,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Ident // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange? other) { if (ReferenceEquals(null, other)) { @@ -34311,7 +34031,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Unexp return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange)obj); } public override global::System.Int32 GetHashCode() @@ -34327,16 +34047,16 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Unexp // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) { Message = message; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange? other) { if (ReferenceEquals(null, other)) { @@ -34373,7 +34093,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Works return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange)obj); } public override global::System.Int32 GetHashCode() @@ -34389,13 +34109,13 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_Works // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() { } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -34432,7 +34152,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiD return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -34447,13 +34167,95 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiD // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api() + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(global::System.String name, global::System.String id, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) + { + Name = name; + Id = id; + Path = path; + Workspace = workspace; + Settings = settings; + } + + public global::System.String Name { get; } + public global::System.String Id { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } + + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api? other) { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)) && Id.Equals(other.Id) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api? other) + 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((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + foreach (var Path_elm in Path) + { + hash ^= 397 * Path_elm.GetHashCode(); + } + + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + + hash ^= 397 * Settings.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument + { + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument() + { + } + + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -34490,7 +34292,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api( return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -34505,13 +34307,13 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument() + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment() { } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment? other) { if (ReferenceEquals(null, other)) { @@ -34548,7 +34350,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -34563,20 +34365,18 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String id, global::System.String name) { - Name = name; Id = id; - Workspace = workspace; + Name = name; } - public global::System.String Name { get; } public global::System.String Id { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -34593,7 +34393,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Envi return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -34613,7 +34413,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Envi return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -34621,13 +34421,70 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Envi unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); hash ^= 397 * Id.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings + { + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) + { + SchemaRegistry = schemaRegistry; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (SchemaRegistry.Equals(other.SchemaRegistry)); + } + + 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((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings)obj); + } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * SchemaRegistry.GetHashCode(); return hash; } } @@ -34635,16 +34492,18 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Envi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace + public partial class CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings { - public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String name) + public CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) { - Name = name; + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - public global::System.String Name { get; } + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } - public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings? other) { if (ReferenceEquals(null, other)) { @@ -34661,7 +34520,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work return false; } - return (Name.Equals(other.Name)); + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -34681,7 +34540,7 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work return false; } - return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace)obj); + return Equals((CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings)obj); } public override global::System.Int32 GetHashCode() @@ -34689,7 +34548,8 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } @@ -34697,170 +34557,189 @@ public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Work // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutationResult + public partial interface ICreateApiCommandMutationResult { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges { - public global::System.Collections.Generic.IReadOnlyList? Changes { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateApiCommandMutation_PushWorkspaceChanges { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes { public global::System.String ReferenceId { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateApiCommandMutation_PushWorkspaceChanges_Changes { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : ICreateApiCommandMutation_PushWorkspaceChanges_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : ICreateApiCommandMutation_PushWorkspaceChanges_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface ICreateApiCommandMutation_Api : IApiDetailPrompt_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result, ICreateApiCommandMutation_Api { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IEnvironmentDetailPrompt_Environment + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace { public global::System.String Id { get; } public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_Environment : IEnvironmentDetailPrompt_Environment + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result, ICreateEnvironmentCommandMutation_Environment + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings { + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry + { + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings : ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryResult : global::System.IEquatable, IListEnvironmentCommandQueryResult + public partial class UpdateStagesResult : global::System.IEquatable, IUpdateStagesResult { - public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? workspaceById) + public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages updateStages) { - WorkspaceById = workspaceById; + UpdateStages = updateStages; } - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? WorkspaceById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages UpdateStages { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQueryResult? other) + public virtual global::System.Boolean Equals(UpdateStagesResult? other) { if (ReferenceEquals(null, other)) { @@ -34877,7 +34756,7 @@ public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); + return (UpdateStages.Equals(other.UpdateStages)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -34897,7 +34776,7 @@ public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((ListEnvironmentCommandQueryResult)obj); + return Equals((UpdateStagesResult)obj); } public override global::System.Int32 GetHashCode() @@ -34905,11 +34784,7 @@ public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - if (WorkspaceById != null) - { - hash ^= 397 * WorkspaceById.GetHashCode(); - } - + hash ^= 397 * UpdateStages.GetHashCode(); return hash; } } @@ -34917,16 +34792,18 @@ public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Workspace + public partial class UpdateStages_UpdateStages_UpdateStagesPayload : global::System.IEquatable, IUpdateStages_UpdateStages_UpdateStagesPayload { - public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? environments) + public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) { - Environments = environments; + Api = api; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? Environments { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Workspace? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_UpdateStagesPayload? other) { if (ReferenceEquals(null, other)) { @@ -34943,7 +34820,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.N return false; } - return (((Environments is null && other.Environments is null) || Environments != null && Environments.Equals(other.Environments))); + return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -34963,7 +34840,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.N return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Workspace)obj); + return Equals((UpdateStages_UpdateStages_UpdateStagesPayload)obj); } public override global::System.Int32 GetHashCode() @@ -34971,9 +34848,17 @@ public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.N unchecked { int hash = 5; - if (Environments != null) + if (Api != null) { - hash ^= 397 * Environments.GetHashCode(); + hash ^= 397 * Api.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -34982,28 +34867,17 @@ public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.N } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection + public partial class UpdateStages_UpdateStages_Api_Api : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Api { - public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo pageInfo) + public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IReadOnlyList stages) { - Edges = edges; - PageInfo = pageInfo; + Stages = stages; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo PageInfo { get; } + public global::System.Collections.Generic.IReadOnlyList Stages { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -35020,7 +34894,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnec return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35040,7 +34914,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnec return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection)obj); + return Equals((UpdateStages_UpdateStages_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -35048,43 +34922,35 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnec unchecked { int hash = 5; - if (Edges != null) + foreach (var Stages_elm in Stages) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Stages_elm.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge + public partial class UpdateStages_UpdateStages_Errors_ApiNotFoundError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_ApiNotFoundError { - public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node node) + public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Message = message; + ApiId = apiId; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -35101,7 +34967,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Environments return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35121,7 +34987,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Environments return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge)obj); + return Equals((UpdateStages_UpdateStages_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -35129,46 +34995,33 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Environments unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo + public partial class UpdateStages_UpdateStages_Errors_StageNotFoundError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StageNotFoundError { - public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Message = message; + Name = name; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -35185,7 +35038,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo( return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35205,7 +35058,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo( return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo)obj); + return Equals((UpdateStages_UpdateStages_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -35213,18 +35066,9 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo( unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -35232,20 +35076,23 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment + public partial class UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError { - public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace) + public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList stages) { - Id = id; - Name = name; - Workspace = workspace; + this.__typename = __typename; + Message = message; + Stages = stages; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Stages { get; } - public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError? other) { if (ReferenceEquals(null, other)) { @@ -35262,7 +35109,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environ return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35282,7 +35129,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environ return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment)obj); + return Equals((UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError)obj); } public override global::System.Int32 GetHashCode() @@ -35290,11 +35137,11 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environ unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Workspace != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Stages_elm in Stages) { - hash ^= 397 * Workspace.GetHashCode(); + hash ^= 397 * Stages_elm.GetHashCode(); } return hash; @@ -35304,16 +35151,21 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace + public partial class UpdateStages_UpdateStages_Errors_StageValidationError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StageValidationError { - public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace(global::System.String name) + public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.String message, global::System.String __typename) { - Name = name; + Message = message; + this.__typename = __typename; } - public global::System.String Name { get; } + 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(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_StageValidationError? other) { if (ReferenceEquals(null, other)) { @@ -35330,7 +35182,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspa return false; } - return (Name.Equals(other.Name)); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35350,7 +35202,7 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspa return false; } - return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace)obj); + return Equals((UpdateStages_UpdateStages_Errors_StageValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -35358,157 +35210,31 @@ public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspa unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + 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 IListEnvironmentCommandQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? WorkspaceById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById - { - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? Environments { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Workspace : IListEnvironmentCommandQuery_WorkspaceById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection : IListEnvironmentCommandQuery_WorkspaceById_Environments - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommand_EnvironmentEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges : IListEnvironmentCommand_EnvironmentEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo : IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommand_Environment : IEnvironmentDetailPrompt_Environment - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node : IListEnvironmentCommand_Environment - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryResult : global::System.IEquatable, IShowEnvironmentCommandQueryResult + public partial class UpdateStages_UpdateStages_Api_Stages_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Stage { - public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? node) + public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) { - Node = node; + Id = id; + Name = name; + DisplayName = displayName; + Conditions = conditions; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? Node { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.String DisplayName { get; } + public global::System.Collections.Generic.IReadOnlyList Conditions { get; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQueryResult? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Stage? other) { if (ReferenceEquals(null, other)) { @@ -35525,7 +35251,7 @@ public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && DisplayName.Equals(other.DisplayName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35545,7 +35271,7 @@ public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((ShowEnvironmentCommandQueryResult)obj); + return Equals((UpdateStages_UpdateStages_Api_Stages_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -35553,9 +35279,12 @@ public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - if (Node != null) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * DisplayName.GetHashCode(); + foreach (var Conditions_elm in Conditions) { - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Conditions_elm.GetHashCode(); } return hash; @@ -35565,13 +35294,20 @@ public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Api : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Api + public partial class UpdateStages_UpdateStages_Errors_Stages_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_Stage { - public ShowEnvironmentCommandQuery_Node_Api() + public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? publishedSchema, global::System.Collections.Generic.IReadOnlyList publishedClients) { + Name = name; + PublishedSchema = publishedSchema; + PublishedClients = publishedClients; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Api? other) + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? PublishedSchema { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedClients { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_Stage? other) { if (ReferenceEquals(null, other)) { @@ -35588,7 +35324,7 @@ public ShowEnvironmentCommandQuery_Node_Api() return false; } - return true; + return (Name.Equals(other.Name)) && ((PublishedSchema is null && other.PublishedSchema is null) || PublishedSchema != null && PublishedSchema.Equals(other.PublishedSchema)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedClients, other.PublishedClients); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35608,7 +35344,7 @@ public ShowEnvironmentCommandQuery_Node_Api() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Api)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -35616,6 +35352,17 @@ public ShowEnvironmentCommandQuery_Node_Api() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); + if (PublishedSchema != null) + { + hash ^= 397 * PublishedSchema.GetHashCode(); + } + + foreach (var PublishedClients_elm in PublishedClients) + { + hash ^= 397 * PublishedClients_elm.GetHashCode(); + } + return hash; } } @@ -35623,13 +35370,16 @@ public ShowEnvironmentCommandQuery_Node_Api() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ApiDocument + public partial class UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition { - public ShowEnvironmentCommandQuery_Node_ApiDocument() + public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) { + AfterStage = afterStage; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ApiDocument? other) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition? other) { if (ReferenceEquals(null, other)) { @@ -35646,7 +35396,7 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() return false; } - return true; + return (((AfterStage is null && other.AfterStage is null) || AfterStage != null && AfterStage.Equals(other.AfterStage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35666,7 +35416,7 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_ApiDocument)obj); + return Equals((UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition)obj); } public override global::System.Int32 GetHashCode() @@ -35674,6 +35424,11 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() unchecked { int hash = 5; + if (AfterStage != null) + { + hash ^= 397 * AfterStage.GetHashCode(); + } + return hash; } } @@ -35681,13 +35436,16 @@ public ShowEnvironmentCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_ApiKey : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ApiKey + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion { - public ShowEnvironmentCommandQuery_Node_ApiKey() + public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? version) { + Version = version; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ApiKey? other) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? Version { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion? other) { if (ReferenceEquals(null, other)) { @@ -35704,7 +35462,7 @@ public ShowEnvironmentCommandQuery_Node_ApiKey() return false; } - return true; + return (((Version is null && other.Version is null) || Version != null && Version.Equals(other.Version))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35724,7 +35482,7 @@ public ShowEnvironmentCommandQuery_Node_ApiKey() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_ApiKey)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion)obj); } public override global::System.Int32 GetHashCode() @@ -35732,6 +35490,11 @@ public ShowEnvironmentCommandQuery_Node_ApiKey() unchecked { int hash = 5; + if (Version != null) + { + hash ^= 397 * Version.GetHashCode(); + } + return hash; } } @@ -35739,13 +35502,18 @@ public ShowEnvironmentCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Client : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Client + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient { - public ShowEnvironmentCommandQuery_Node_Client() + public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client client, global::System.Collections.Generic.IReadOnlyList publishedVersions) { + Client = client; + PublishedVersions = publishedVersions; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Client? other) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client Client { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedVersions { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient? other) { if (ReferenceEquals(null, other)) { @@ -35762,7 +35530,7 @@ public ShowEnvironmentCommandQuery_Node_Client() return false; } - return true; + return (Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedVersions, other.PublishedVersions); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35782,7 +35550,7 @@ public ShowEnvironmentCommandQuery_Node_Client() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Client)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient)obj); } public override global::System.Int32 GetHashCode() @@ -35790,6 +35558,12 @@ public ShowEnvironmentCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * Client.GetHashCode(); + foreach (var PublishedVersions_elm in PublishedVersions) + { + hash ^= 397 * PublishedVersions_elm.GetHashCode(); + } + return hash; } } @@ -35797,13 +35571,16 @@ public ShowEnvironmentCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientChangeLog + public partial class UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage { - public ShowEnvironmentCommandQuery_Node_ClientChangeLog() + public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global::System.String name) { + Name = name; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientChangeLog? other) + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -35820,7 +35597,7 @@ public ShowEnvironmentCommandQuery_Node_ClientChangeLog() return false; } - return true; + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35840,7 +35617,7 @@ public ShowEnvironmentCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_ClientChangeLog)obj); + return Equals((UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -35848,6 +35625,7 @@ public ShowEnvironmentCommandQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -35855,13 +35633,16 @@ public ShowEnvironmentCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientDeployment + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion { - public ShowEnvironmentCommandQuery_Node_ClientDeployment() + public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(global::System.String tag) { + Tag = tag; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientDeployment? other) + public global::System.String Tag { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion? other) { if (ReferenceEquals(null, other)) { @@ -35878,7 +35659,7 @@ public ShowEnvironmentCommandQuery_Node_ClientDeployment() return false; } - return true; + return (Tag.Equals(other.Tag)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35898,7 +35679,7 @@ public ShowEnvironmentCommandQuery_Node_ClientDeployment() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_ClientDeployment)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion)obj); } public override global::System.Int32 GetHashCode() @@ -35906,6 +35687,7 @@ public ShowEnvironmentCommandQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * Tag.GetHashCode(); return hash; } } @@ -35913,13 +35695,16 @@ public ShowEnvironmentCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientVersion + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client { - public ShowEnvironmentCommandQuery_Node_ClientVersion() + public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(global::System.String name) { + Name = name; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientVersion? other) + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -35936,7 +35721,7 @@ public ShowEnvironmentCommandQuery_Node_ClientVersion() return false; } - return true; + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -35956,7 +35741,7 @@ public ShowEnvironmentCommandQuery_Node_ClientVersion() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_ClientVersion)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -35964,6 +35749,7 @@ public ShowEnvironmentCommandQuery_Node_ClientVersion() unchecked { int hash = 5; + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -35971,13 +35757,16 @@ public ShowEnvironmentCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion { - public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() + public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? version) { + Version = version; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics? other) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? Version { get; } + + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -35994,7 +35783,7 @@ public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (((Version is null && other.Version is null) || Version != null && Version.Equals(other.Version))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -36014,7 +35803,7 @@ public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -36022,6 +35811,11 @@ public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + if (Version != null) + { + hash ^= 397 * Version.GetHashCode(); + } + return hash; } } @@ -36029,20 +35823,16 @@ public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Environment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Environment + public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion { - public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace) + public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion(global::System.String tag) { - Id = id; - Name = name; - Workspace = workspace; + Tag = tag; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } + public global::System.String Tag { get; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Environment? other) + public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -36059,7 +35849,7 @@ public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, gl return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); + return (Tag.Equals(other.Tag)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -36079,7 +35869,7 @@ public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, gl return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Environment)obj); + return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -36087,27 +35877,262 @@ public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, gl unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - + hash ^= 397 * Tag.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStagesResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages UpdateStages { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? Api { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_UpdateStagesPayload : IUpdateStages_UpdateStages + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api + { + public global::System.Collections.Generic.IReadOnlyList Stages { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Api : IUpdateStages_UpdateStages_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_ApiNotFoundError : IUpdateStages_UpdateStages_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_StageNotFoundError : IUpdateStages_UpdateStages_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStagesHavePublishedDependenciesError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Stages { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError : IUpdateStages_UpdateStages_Errors, IStagesHavePublishedDependenciesError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_StageValidationError : IUpdateStages_UpdateStages_Errors + { + public global::System.String Message { get; } + /// + /// 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 IStageDetailPrompt_Stage + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.String DisplayName { get; } + public global::System.Collections.Generic.IReadOnlyList Conditions { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages : IStageDetailPrompt_Stage + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages_Stage : IUpdateStages_UpdateStages_Api_Stages + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages + { + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? PublishedSchema { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedClients { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_Stage : IUpdateStages_UpdateStages_Errors_Stages + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStageCondition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions : IStageCondition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IAfterStageCondition + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition : IUpdateStages_UpdateStages_Api_Stages_Conditions, IAfterStageCondition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? Version { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client Client { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedVersions { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage : IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version + { + public global::System.String Tag { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions + { + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? Version { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version + { + public global::System.String Tag { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog + public partial class ListStagesQueryResult : global::System.IEquatable, IListStagesQueryResult { - public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() + public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? node) { + Node = node; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog? other) + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? Node { get; } + + public virtual global::System.Boolean Equals(ListStagesQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -36124,7 +36149,7 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -36144,7 +36169,7 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((ListStagesQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -36152,6 +36177,11 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + if (Node != null) + { + hash ^= 397 * Node.GetHashCode(); + } + return hash; } } @@ -36159,13 +36189,16 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment + public partial class ListStagesQuery_Node_Api : global::System.IEquatable, IListStagesQuery_Node_Api { - public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() + public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList stages) { + Stages = stages; } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment? other) + public global::System.Collections.Generic.IReadOnlyList Stages { get; } + + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -36182,7 +36215,7 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -36202,7 +36235,7 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((ListStagesQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -36210,6 +36243,11 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + foreach (var Stages_elm in Stages) + { + hash ^= 397 * Stages_elm.GetHashCode(); + } + return hash; } } @@ -36217,13 +36255,13 @@ public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class ListStagesQuery_Node_ApiDocument : global::System.IEquatable, IListStagesQuery_Node_ApiDocument { - public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public ListStagesQuery_Node_ApiDocument() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -36260,7 +36298,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((ListStagesQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -36275,13 +36313,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition + public partial class ListStagesQuery_Node_ApiKey : global::System.IEquatable, IListStagesQuery_Node_ApiKey { - public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() + public ListStagesQuery_Node_ApiKey() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -36318,7 +36356,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((ListStagesQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -36333,13 +36371,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class ListStagesQuery_Node_Client : global::System.IEquatable, IListStagesQuery_Node_Client { - public ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() + public ListStagesQuery_Node_Client() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -36376,7 +36414,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((ListStagesQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -36391,13 +36429,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition + public partial class ListStagesQuery_Node_ClientChangeLog : global::System.IEquatable, IListStagesQuery_Node_ClientChangeLog { - public ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() + public ListStagesQuery_Node_ClientChangeLog() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -36434,7 +36472,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((ListStagesQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -36449,13 +36487,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class ListStagesQuery_Node_ClientDeployment : global::System.IEquatable, IListStagesQuery_Node_ClientDeployment { - public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public ListStagesQuery_Node_ClientDeployment() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -36492,7 +36530,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((ListStagesQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -36507,13 +36545,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class ListStagesQuery_Node_ClientVersion : global::System.IEquatable, IListStagesQuery_Node_ClientVersion { - public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public ListStagesQuery_Node_ClientVersion() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -36550,7 +36588,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((ListStagesQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -36565,13 +36603,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class ListStagesQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListStagesQuery_Node_CoordinateClientUsageMetrics { - public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public ListStagesQuery_Node_CoordinateClientUsageMetrics() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -36608,7 +36646,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition( return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((ListStagesQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -36623,13 +36661,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class ListStagesQuery_Node_Environment : global::System.IEquatable, IListStagesQuery_Node_Environment { - public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public ListStagesQuery_Node_Environment() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -36666,7 +36704,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((ListStagesQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -36681,13 +36719,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class ListStagesQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListStagesQuery_Node_FusionConfigurationChangeLog { - public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public ListStagesQuery_Node_FusionConfigurationChangeLog() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -36724,7 +36762,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((ListStagesQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -36739,13 +36777,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class ListStagesQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListStagesQuery_Node_FusionConfigurationDeployment { - public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public ListStagesQuery_Node_FusionConfigurationDeployment() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -36782,7 +36820,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((ListStagesQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -36797,13 +36835,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLDirectiveArgumentDefinition { - public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() + public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -36840,7 +36878,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -36855,13 +36893,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class ListStagesQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLDirectiveDefinition { - public ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() + public ListStagesQuery_Node_GraphQLDirectiveDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -36898,7 +36936,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((ListStagesQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -36913,13 +36951,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class ListStagesQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLEnumTypeDefinition { - public ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() + public ListStagesQuery_Node_GraphQLEnumTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -36956,7 +36994,7 @@ public ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((ListStagesQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -36971,13 +37009,13 @@ public ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Group : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Group + public partial class ListStagesQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLEnumValueDefinition { - public ShowEnvironmentCommandQuery_Node_Group() + public ListStagesQuery_Node_GraphQLEnumValueDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Group? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37014,7 +37052,7 @@ public ShowEnvironmentCommandQuery_Node_Group() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Group)obj); + return Equals((ListStagesQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37029,13 +37067,13 @@ public ShowEnvironmentCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollection + public partial class ListStagesQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInputObjectFieldDefinition { - public ShowEnvironmentCommandQuery_Node_McpFeatureCollection() + public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37072,7 +37110,7 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollection)obj); + return Equals((ListStagesQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37087,13 +37125,13 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class ListStagesQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInputObjectTypeDefinition { - public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() + public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37130,7 +37168,7 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((ListStagesQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37145,13 +37183,13 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment + public partial class ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() + public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37188,7 +37226,7 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37203,13 +37241,13 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion + public partial class ListStagesQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceFieldDefinition { - public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() + public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37246,7 +37284,7 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((ListStagesQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37261,13 +37299,13 @@ public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollection + public partial class ListStagesQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceTypeDefinition { - public ShowEnvironmentCommandQuery_Node_OpenApiCollection() + public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37304,7 +37342,7 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollection)obj); + return Equals((ListStagesQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37319,13 +37357,13 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog + public partial class ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition { - public ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() + public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37362,7 +37400,7 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37377,13 +37415,13 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment + public partial class ListStagesQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLObjectFieldDefinition { - public ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() + public ListStagesQuery_Node_GraphQLObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37420,7 +37458,7 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((ListStagesQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37435,13 +37473,13 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion + public partial class ListStagesQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLScalarTypeDefinition { - public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() + public ListStagesQuery_Node_GraphQLScalarTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37478,7 +37516,7 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((ListStagesQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37493,13 +37531,13 @@ public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() // 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 + public partial class ListStagesQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLUnionTypeDefinition { - public ShowEnvironmentCommandQuery_Node_Organization() + public ListStagesQuery_Node_GraphQLUnionTypeDefinition() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -37536,7 +37574,7 @@ public ShowEnvironmentCommandQuery_Node_Organization() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Organization)obj); + return Equals((ListStagesQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -37551,13 +37589,13 @@ public ShowEnvironmentCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OrganizationMember + public partial class ListStagesQuery_Node_Group : global::System.IEquatable, IListStagesQuery_Node_Group { - public ShowEnvironmentCommandQuery_Node_OrganizationMember() + public ListStagesQuery_Node_Group() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -37594,7 +37632,7 @@ public ShowEnvironmentCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_OrganizationMember)obj); + return Equals((ListStagesQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -37609,13 +37647,13 @@ public ShowEnvironmentCommandQuery_Node_OrganizationMember() // 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 + public partial class ListStagesQuery_Node_McpFeatureCollection : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollection { - public ShowEnvironmentCommandQuery_Node_SchemaChangeLog() + public ListStagesQuery_Node_McpFeatureCollection() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -37652,7 +37690,7 @@ public ShowEnvironmentCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ListStagesQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -37667,13 +37705,13 @@ public ShowEnvironmentCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_SchemaDeployment + public partial class ListStagesQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionChangeLog { - public ShowEnvironmentCommandQuery_Node_SchemaDeployment() + public ListStagesQuery_Node_McpFeatureCollectionChangeLog() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -37710,7 +37748,7 @@ public ShowEnvironmentCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_SchemaDeployment)obj); + return Equals((ListStagesQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -37725,13 +37763,13 @@ public ShowEnvironmentCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Stage : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Stage + public partial class ListStagesQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionDeployment { - public ShowEnvironmentCommandQuery_Node_Stage() + public ListStagesQuery_Node_McpFeatureCollectionDeployment() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -37768,7 +37806,7 @@ public ShowEnvironmentCommandQuery_Node_Stage() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Stage)obj); + return Equals((ListStagesQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -37783,13 +37821,13 @@ public ShowEnvironmentCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_User : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_User + public partial class ListStagesQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionVersion { - public ShowEnvironmentCommandQuery_Node_User() + public ListStagesQuery_Node_McpFeatureCollectionVersion() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -37826,7 +37864,7 @@ public ShowEnvironmentCommandQuery_Node_User() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_User)obj); + return Equals((ListStagesQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -37841,13 +37879,13 @@ public ShowEnvironmentCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Workspace : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Workspace + public partial class ListStagesQuery_Node_OpenApiCollection : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollection { - public ShowEnvironmentCommandQuery_Node_Workspace() + public ListStagesQuery_Node_OpenApiCollection() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -37884,7 +37922,7 @@ public ShowEnvironmentCommandQuery_Node_Workspace() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Workspace)obj); + return Equals((ListStagesQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -37899,13 +37937,13 @@ public ShowEnvironmentCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_WorkspaceDocument + public partial class ListStagesQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionChangeLog { - public ShowEnvironmentCommandQuery_Node_WorkspaceDocument() + public ListStagesQuery_Node_OpenApiCollectionChangeLog() { } - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -37942,7 +37980,7 @@ public ShowEnvironmentCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ShowEnvironmentCommandQuery_Node_WorkspaceDocument)obj); + return Equals((ListStagesQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -37957,16 +37995,13 @@ public ShowEnvironmentCommandQuery_Node_WorkspaceDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Workspace_Workspace + public partial class ListStagesQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionDeployment { - public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.String name) + public ListStagesQuery_Node_OpenApiCollectionDeployment() { - Name = name; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -37983,7 +38018,7 @@ public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.Strin return false; } - return (Name.Equals(other.Name)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38003,7 +38038,7 @@ public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.Strin return false; } - return Equals((ShowEnvironmentCommandQuery_Node_Workspace_Workspace)obj); + return Equals((ListStagesQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -38011,302 +38046,20 @@ public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.Strin unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQueryResult - { - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Api : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_ApiDocument : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_ApiKey : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Client : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_ClientChangeLog : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_ClientDeployment : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_ClientVersion : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Environment : IShowEnvironmentCommandQuery_Node, IEnvironmentDetailPrompt_Environment - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Group : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollection : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollection : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Organization : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_OrganizationMember : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_SchemaChangeLog : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_SchemaDeployment : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Stage : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_User : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Workspace : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_WorkspaceDocument : IShowEnvironmentCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Workspace_1 - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQuery_Node_Workspace_Workspace : IShowEnvironmentCommandQuery_Node_Workspace_1 - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationResult : global::System.IEquatable, IFetchConfigurationResult + public partial class ListStagesQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionVersion { - public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? fusionConfigurationByApiId) + public ListStagesQuery_Node_OpenApiCollectionVersion() { - FusionConfigurationByApiId = fusionConfigurationByApiId; } - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? FusionConfigurationByApiId { get; } - - public virtual global::System.Boolean Equals(FetchConfigurationResult? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -38323,7 +38076,7 @@ public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFe return false; } - return (((FusionConfigurationByApiId is null && other.FusionConfigurationByApiId is null) || FusionConfigurationByApiId != null && FusionConfigurationByApiId.Equals(other.FusionConfigurationByApiId))); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38343,7 +38096,7 @@ public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFe return false; } - return Equals((FetchConfigurationResult)obj); + return Equals((ListStagesQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -38351,11 +38104,6 @@ public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFe unchecked { int hash = 5; - if (FusionConfigurationByApiId != null) - { - hash ^= 397 * FusionConfigurationByApiId.GetHashCode(); - } - return hash; } } @@ -38363,18 +38111,13 @@ public FetchConfigurationResult(global::ChilliCream.Nitro.CommandLine.Client.IFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration : global::System.IEquatable, IFetchConfiguration_FusionConfigurationByApiId_FusionConfiguration + public partial class ListStagesQuery_Node_Organization : global::System.IEquatable, IListStagesQuery_Node_Organization { - public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global::System.String downloadUrl, global::System.String tag) + public ListStagesQuery_Node_Organization() { - DownloadUrl = downloadUrl; - Tag = tag; } - public global::System.String DownloadUrl { get; } - public global::System.String Tag { get; } - - public virtual global::System.Boolean Equals(FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -38391,7 +38134,7 @@ public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global: return false; } - return (DownloadUrl.Equals(other.DownloadUrl)) && Tag.Equals(other.Tag); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38411,7 +38154,7 @@ public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global: return false; } - return Equals((FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration)obj); + return Equals((ListStagesQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -38419,46 +38162,20 @@ public FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(global: unchecked { int hash = 5; - hash ^= 397 * DownloadUrl.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFetchConfigurationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? FusionConfigurationByApiId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFetchConfiguration_FusionConfigurationByApiId - { - public global::System.String DownloadUrl { get; } - public global::System.String Tag { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFetchConfiguration_FusionConfigurationByApiId_FusionConfiguration : IFetchConfiguration_FusionConfigurationByApiId - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphResult : global::System.IEquatable, IUploadFusionSubgraphResult + public partial class ListStagesQuery_Node_OrganizationMember : global::System.IEquatable, IListStagesQuery_Node_OrganizationMember { - public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph uploadFusionSubgraph) + public ListStagesQuery_Node_OrganizationMember() { - UploadFusionSubgraph = uploadFusionSubgraph; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph UploadFusionSubgraph { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraphResult? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -38475,7 +38192,7 @@ public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return (UploadFusionSubgraph.Equals(other.UploadFusionSubgraph)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38495,7 +38212,7 @@ public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return Equals((UploadFusionSubgraphResult)obj); + return Equals((ListStagesQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -38503,7 +38220,6 @@ public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.I unchecked { int hash = 5; - hash ^= 397 * UploadFusionSubgraph.GetHashCode(); return hash; } } @@ -38511,18 +38227,13 @@ public UploadFusionSubgraphResult(global::ChilliCream.Nitro.CommandLine.Client.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload + public partial class ListStagesQuery_Node_SchemaChangeLog : global::System.IEquatable, IListStagesQuery_Node_SchemaChangeLog { - public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? fusionSubgraphVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public ListStagesQuery_Node_SchemaChangeLog() { - FusionSubgraphVersion = fusionSubgraphVersion; - Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? FusionSubgraphVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -38539,7 +38250,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(glo return false; } - return (((FusionSubgraphVersion is null && other.FusionSubgraphVersion is null) || FusionSubgraphVersion != null && FusionSubgraphVersion.Equals(other.FusionSubgraphVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38559,7 +38270,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(glo return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload)obj); + return Equals((ListStagesQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -38567,19 +38278,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(glo unchecked { int hash = 5; - if (FusionSubgraphVersion != null) - { - hash ^= 397 * FusionSubgraphVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - return hash; } } @@ -38587,16 +38285,13 @@ public UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion + public partial class ListStagesQuery_Node_SchemaDeployment : global::System.IEquatable, IListStagesQuery_Node_SchemaDeployment { - public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(global::System.String id) + public ListStagesQuery_Node_SchemaDeployment() { - Id = id; } - public global::System.String Id { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -38613,7 +38308,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSub return false; } - return (Id.Equals(other.Id)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38633,7 +38328,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSub return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion)obj); + return Equals((ListStagesQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -38641,7 +38336,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSub unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -38649,16 +38343,13 @@ public UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError + public partial class ListStagesQuery_Node_Stage : global::System.IEquatable, IListStagesQuery_Node_Stage { - public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError(global::System.String message) + public ListStagesQuery_Node_Stage() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -38675,7 +38366,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchem return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38695,7 +38386,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchem return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError)obj); + return Equals((ListStagesQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -38703,7 +38394,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchem unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -38711,16 +38401,13 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchem // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError + public partial class ListStagesQuery_Node_User : global::System.IEquatable, IListStagesQuery_Node_User { - public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global::System.String message) + public ListStagesQuery_Node_User() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -38737,7 +38424,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global: return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38757,7 +38444,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global: return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError)obj); + return Equals((ListStagesQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -38765,7 +38452,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global: unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -38773,21 +38459,13 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError + public partial class ListStagesQuery_Node_Workspace : global::System.IEquatable, IListStagesQuery_Node_Workspace { - public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public ListStagesQuery_Node_Workspace() { - this.__typename = __typename; - Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -38804,7 +38482,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38824,7 +38502,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError)obj); + return Equals((ListStagesQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -38832,8 +38510,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -38841,21 +38517,13 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation + public partial class ListStagesQuery_Node_WorkspaceDocument : global::System.IEquatable, IListStagesQuery_Node_WorkspaceDocument { - public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public ListStagesQuery_Node_WorkspaceDocument() { - this.__typename = __typename; - Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -38872,7 +38540,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(gl return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -38892,7 +38560,7 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(gl return false; } - return Equals((UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation)obj); + return Equals((ListStagesQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -38900,8 +38568,6 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(gl unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -38909,161 +38575,22 @@ public UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(gl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError : global::System.IEquatable, IUploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError + public partial class ListStagesQuery_Node_Stages_Stage : global::System.IEquatable, IListStagesQuery_Node_Stages_Stage { - public UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) - { - this.__typename = __typename; - Message = message; - } - - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); - } - - 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((UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError)obj); - } - - public override global::System.Int32 GetHashCode() + public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - return hash; - } + Id = id; + Name = name; + DisplayName = displayName; + Conditions = conditions; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraphResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph UploadFusionSubgraph { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? FusionSubgraphVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload : IUploadFusionSubgraph_UploadFusionSubgraph - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion - { public global::System.String Id { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion : IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInvalidFusionSourceSchemaArchiveError - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IInvalidFusionSourceSchemaArchiveError, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IConcurrentOperationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError : IUploadFusionSubgraph_UploadFusionSubgraph_Errors, IDuplicatedTagError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutationResult - { - public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection createMcpFeatureCollection) - { - CreateMcpFeatureCollection = createMcpFeatureCollection; - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection CreateMcpFeatureCollection { get; } + public global::System.String Name { get; } + public global::System.String DisplayName { get; } + public global::System.Collections.Generic.IReadOnlyList Conditions { get; } - public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Stage? other) { if (ReferenceEquals(null, other)) { @@ -39080,7 +38607,7 @@ public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro return false; } - return (CreateMcpFeatureCollection.Equals(other.CreateMcpFeatureCollection)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && DisplayName.Equals(other.DisplayName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39100,7 +38627,7 @@ public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro return false; } - return Equals((CreateMcpFeatureCollectionCommandMutationResult)obj); + return Equals((ListStagesQuery_Node_Stages_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -39108,7 +38635,14 @@ public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro unchecked { int hash = 5; - hash ^= 397 * CreateMcpFeatureCollection.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * DisplayName.GetHashCode(); + foreach (var Conditions_elm in Conditions) + { + hash ^= 397 * Conditions_elm.GetHashCode(); + } + return hash; } } @@ -39116,18 +38650,16 @@ public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload + public partial class ListStagesQuery_Node_Stages_Conditions_AfterStageCondition : global::System.IEquatable, IListStagesQuery_Node_Stages_Conditions_AfterStageCondition { - public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) + public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) { - McpFeatureCollection = mcpFeatureCollection; - Errors = errors; + AfterStage = afterStage; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } - public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Conditions_AfterStageCondition? other) { if (ReferenceEquals(null, other)) { @@ -39144,7 +38676,7 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Crea return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((AfterStage is null && other.AfterStage is null) || AfterStage != null && AfterStage.Equals(other.AfterStage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39164,7 +38696,7 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Crea return false; } - return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload)obj); + return Equals((ListStagesQuery_Node_Stages_Conditions_AfterStageCondition)obj); } public override global::System.Int32 GetHashCode() @@ -39172,17 +38704,9 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Crea unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - if (Errors != null) + if (AfterStage != null) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * AfterStage.GetHashCode(); } return hash; @@ -39192,18 +38716,16 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Crea // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection + public partial class ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage : global::System.IEquatable, IListStagesQuery_Node_Stages_Conditions_AfterStage_Stage { - public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) + public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.String name) { Name = name; - Id = id; } public global::System.String Name { get; } - public global::System.String Id { get; } - public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -39220,7 +38742,7 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpF return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39240,7 +38762,7 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpF return false; } - return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -39249,228 +38771,326 @@ public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpF { int hash = 5; hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError + public partial interface IListStagesQueryResult { - public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) - { - Message = message; - this.__typename = __typename; - ApiId = apiId; - } - - public global::System.String Message { get; } /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::System.String ApiId { get; } - - public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError? 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) && ApiId.Equals(other.ApiId); - } - - 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_ApiNotFoundError)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); - return hash; - } - } + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? Node { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation + public partial interface IListStagesQuery_Node { - public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(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_UnauthorizedOperation? 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_UnauthorizedOperation)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 + public partial interface IListStagesQuery_Node_Api : IListStagesQuery_Node { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection CreateMcpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Stages { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection + public partial interface IListStagesQuery_Node_ApiDocument : IListStagesQuery_Node { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection + public partial interface IListStagesQuery_Node_ApiKey : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + public partial interface IListStagesQuery_Node_Client : IListStagesQuery_Node { - public global::System.String Id { get; } - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + public partial interface IListStagesQuery_Node_ClientChangeLog : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + public partial interface IListStagesQuery_Node_ClientDeployment : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection + public partial interface IListStagesQuery_Node_ClientVersion : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors + public partial interface IListStagesQuery_Node_CoordinateClientUsageMetrics : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors, IApiNotFoundError + public partial interface IListStagesQuery_Node_Environment : IListStagesQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors, IUnauthorizedOperation + public partial interface IListStagesQuery_Node_FusionConfigurationChangeLog : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_FusionConfigurationDeployment : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLDirectiveArgumentDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLDirectiveDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLEnumTypeDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLEnumValueDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLInputObjectFieldDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLInputObjectTypeDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLInterfaceTypeDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLObjectFieldDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLScalarTypeDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_GraphQLUnionTypeDefinition : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Group : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_McpFeatureCollection : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_McpFeatureCollectionChangeLog : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_McpFeatureCollectionDeployment : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_McpFeatureCollectionVersion : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiCollection : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiCollectionChangeLog : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiCollectionDeployment : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OpenApiCollectionVersion : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Organization : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_OrganizationMember : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_SchemaChangeLog : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_SchemaDeployment : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stage : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_User : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Workspace : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_WorkspaceDocument : IListStagesQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages : IStageDetailPrompt_Stage + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages_Stage : IListStagesQuery_Node_Stages + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages_Conditions : IStageCondition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStageCondition : IListStagesQuery_Node_Stages_Conditions, IAfterStageCondition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStage_Stage : IListStagesQuery_Node_Stages_Conditions_AfterStage { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutationResult + public partial class ListEnvironmentCommandQueryResult : global::System.IEquatable, IListEnvironmentCommandQueryResult { - public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById deleteMcpFeatureCollectionById) + public ListEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? workspaceById) { - DeleteMcpFeatureCollectionById = deleteMcpFeatureCollectionById; + WorkspaceById = workspaceById; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById DeleteMcpFeatureCollectionById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? WorkspaceById { get; } - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutationResult? other) + public virtual global::System.Boolean Equals(ListEnvironmentCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -39487,7 +39107,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.N return false; } - return (DeleteMcpFeatureCollectionById.Equals(other.DeleteMcpFeatureCollectionById)); + return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39507,7 +39127,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.N return false; } - return Equals((DeleteMcpFeatureCollectionByIdCommandMutationResult)obj); + return Equals((ListEnvironmentCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -39515,7 +39135,11 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.N unchecked { int hash = 5; - hash ^= 397 * DeleteMcpFeatureCollectionById.GetHashCode(); + if (WorkspaceById != null) + { + hash ^= 397 * WorkspaceById.GetHashCode(); + } + return hash; } } @@ -39523,18 +39147,16 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.N // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload + public partial class ListEnvironmentCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Workspace { - public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) + public ListEnvironmentCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? environments) { - McpFeatureCollection = mcpFeatureCollection; - Errors = errors; + Environments = environments; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? Environments { get; } - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload? other) + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -39551,7 +39173,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((Environments is null && other.Environments is null) || Environments != null && Environments.Equals(other.Environments))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39571,7 +39193,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload)obj); + return Equals((ListEnvironmentCommandQuery_WorkspaceById_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -39579,38 +39201,120 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB unchecked { int hash = 5; - if (McpFeatureCollection != null) + if (Environments != null) { - hash ^= 397 * McpFeatureCollection.GetHashCode(); + hash ^= 397 * Environments.GetHashCode(); } - if (Errors != null) + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection + { + public ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo pageInfo) + { + Edges = edges; + PageInfo = pageInfo; + } + + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo PageInfo { get; } + + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + } + + 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((ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Edges != null) { - foreach (var Errors_elm in Errors) + foreach (var Edges_elm in Edges) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Edges_elm.GetHashCode(); } } + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection + public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge { - public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) + public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node node) { - Name = name; - Id = id; + Cursor = cursor; + Node = node; } - public global::System.String Name { get; } - public global::System.String Id { get; } + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge? other) { if (ReferenceEquals(null, other)) { @@ -39627,7 +39331,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39647,7 +39351,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -39655,27 +39359,46 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError + public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo { - public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError(global::System.String message, global::System.String mcpFeatureCollectionId) + public ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - Message = message; - McpFeatureCollectionId = mcpFeatureCollectionId; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::System.String Message { get; } - public global::System.String McpFeatureCollectionId { get; } + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -39692,7 +39415,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return (Message.Equals(other.Message)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39712,7 +39435,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError)obj); + return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -39720,8 +39443,18 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -39729,21 +39462,20 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation + public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment { - public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) + public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? workspace) { - Message = message; - this.__typename = __typename; + Id = id; + Name = name; + Workspace = workspace; } - public global::System.String Message { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? Workspace { get; } - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -39760,7 +39492,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39780,7 +39512,7 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB return false; } - return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation)obj); + return Equals((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -39788,8 +39520,75 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace + { + public ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace(global::System.String name) + { + Name = name; + } + + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)); + } + + 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((ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -39797,73 +39596,148 @@ public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionB // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationResult + public partial interface IListEnvironmentCommandQueryResult { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById DeleteMcpFeatureCollectionById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? WorkspaceById { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById + public partial interface IListEnvironmentCommandQuery_WorkspaceById { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? Environments { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Workspace : IListEnvironmentCommandQuery_WorkspaceById { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection : IListEnvironmentCommandQuery_WorkspaceById_Environments { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection + public partial interface IListEnvironmentCommand_EnvironmentEdge { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges : IListEnvironmentCommand_EnvironmentEdge { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionNotFoundError : IError + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges { - public global::System.String McpFeatureCollectionId { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors, IMcpFeatureCollectionNotFoundError + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo : IPageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors, IUnauthorizedOperation + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo : IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IEnvironmentDetailPrompt_Environment + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? Workspace { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListEnvironmentCommand_Environment : IEnvironmentDetailPrompt_Environment + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node : IListEnvironmentCommand_Environment + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace : IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryResult : global::System.IEquatable, IListMcpFeatureCollectionCommandQueryResult + public partial class ShowEnvironmentCommandQueryResult : global::System.IEquatable, IShowEnvironmentCommandQueryResult { - public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? node) + public ShowEnvironmentCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? node) { Node = node; } @@ -39871,9 +39745,9 @@ public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.Comm /// /// Fetches an object given its ID. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQueryResult? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -39910,7 +39784,7 @@ public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.Comm return false; } - return Equals((ListMcpFeatureCollectionCommandQueryResult)obj); + return Equals((ShowEnvironmentCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -39930,16 +39804,13 @@ public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.Comm // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Api : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Api + public partial class ShowEnvironmentCommandQuery_Node_Api : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Api { - public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? mcpFeatureCollections) + public ShowEnvironmentCommandQuery_Node_Api() { - McpFeatureCollections = mcpFeatureCollections; } - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? McpFeatureCollections { get; } - - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -39956,7 +39827,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.C return false; } - return (((McpFeatureCollections is null && other.McpFeatureCollections is null) || McpFeatureCollections != null && McpFeatureCollections.Equals(other.McpFeatureCollections))); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -39976,7 +39847,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.C return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Api)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -39984,11 +39855,6 @@ public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.C unchecked { int hash = 5; - if (McpFeatureCollections != null) - { - hash ^= 397 * McpFeatureCollections.GetHashCode(); - } - return hash; } } @@ -39996,13 +39862,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_ApiDocument : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ApiDocument + public partial class ShowEnvironmentCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ApiDocument { - public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() + public ShowEnvironmentCommandQuery_Node_ApiDocument() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ApiDocument? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -40039,7 +39905,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_ApiDocument)obj); + return Equals((ShowEnvironmentCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -40054,13 +39920,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ApiKey + public partial class ShowEnvironmentCommandQuery_Node_ApiKey : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ApiKey { - public ListMcpFeatureCollectionCommandQuery_Node_ApiKey() + public ShowEnvironmentCommandQuery_Node_ApiKey() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ApiKey? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -40097,7 +39963,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiKey() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_ApiKey)obj); + return Equals((ShowEnvironmentCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -40112,13 +39978,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Client : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Client + public partial class ShowEnvironmentCommandQuery_Node_Client : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Client { - public ListMcpFeatureCollectionCommandQuery_Node_Client() + public ShowEnvironmentCommandQuery_Node_Client() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Client? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -40155,7 +40021,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Client() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Client)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -40170,13 +40036,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog + public partial class ShowEnvironmentCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() + public ShowEnvironmentCommandQuery_Node_ClientChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -40213,7 +40079,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog)obj); + return Equals((ShowEnvironmentCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -40228,13 +40094,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientDeployment + public partial class ShowEnvironmentCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() + public ShowEnvironmentCommandQuery_Node_ClientDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -40271,7 +40137,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -40286,13 +40152,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientVersion + public partial class ShowEnvironmentCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_ClientVersion { - public ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() + public ShowEnvironmentCommandQuery_Node_ClientVersion() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -40329,7 +40195,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientVersion)obj); + return Equals((ShowEnvironmentCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -40344,13 +40210,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics + public partial class ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics { - public ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() + public ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -40387,7 +40253,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -40402,13 +40268,20 @@ public ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Environment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Environment + public partial class ShowEnvironmentCommandQuery_Node_Environment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Environment { - public ListMcpFeatureCollectionCommandQuery_Node_Environment() + public ShowEnvironmentCommandQuery_Node_Environment(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? workspace) { + Id = id; + Name = name; + Workspace = workspace; } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Environment? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? Workspace { get; } + + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -40425,7 +40298,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Environment() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -40445,7 +40318,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Environment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Environment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -40453,6 +40326,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + return hash; } } @@ -40460,13 +40340,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog + public partial class ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() + public ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -40503,7 +40383,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -40518,13 +40398,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment + public partial class ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() + public ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -40561,7 +40441,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -40576,13 +40456,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40619,7 +40499,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinit return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40634,13 +40514,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinit // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40677,7 +40557,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40692,13 +40572,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40735,7 +40615,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40750,13 +40630,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40793,7 +40673,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40808,13 +40688,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40851,7 +40731,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefiniti return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40866,13 +40746,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefiniti // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40909,7 +40789,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinitio return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40924,13 +40804,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinitio // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -40967,7 +40847,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDe return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -40982,13 +40862,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41025,7 +40905,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41040,13 +40920,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41083,7 +40963,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition( return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41098,13 +40978,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41141,7 +41021,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefin return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41156,13 +41036,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41199,7 +41079,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41214,13 +41094,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41257,7 +41137,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41272,13 +41152,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition { - public ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() + public ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -41315,7 +41195,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -41330,13 +41210,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_Group : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Group + public partial class ShowEnvironmentCommandQuery_Node_Group : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Group { - public ListMcpFeatureCollectionCommandQuery_Node_Group() + public ShowEnvironmentCommandQuery_Node_Group() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Group? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -41373,7 +41253,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Group() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Group)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -41388,13 +41268,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection + public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollection { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() + public ShowEnvironmentCommandQuery_Node_McpFeatureCollection() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -41431,7 +41311,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection)obj); + return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -41446,13 +41326,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() + public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -41489,7 +41369,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -41504,13 +41384,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment + public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment() + public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -41547,7 +41427,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment( return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -41562,13 +41442,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion + public partial class ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() + public ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -41605,7 +41485,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -41620,13 +41500,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection + public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollection { - public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() + public ShowEnvironmentCommandQuery_Node_OpenApiCollection() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -41663,7 +41543,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection)obj); + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -41678,13 +41558,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog + public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() + public ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -41721,7 +41601,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -41736,13 +41616,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment + public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() + public ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -41779,7 +41659,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -41794,13 +41674,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion + public partial class ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion { - public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() + public ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -41837,7 +41717,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -41852,13 +41732,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() // 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 + public partial class ShowEnvironmentCommandQuery_Node_Organization : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Organization { - public ListMcpFeatureCollectionCommandQuery_Node_Organization() + public ShowEnvironmentCommandQuery_Node_Organization() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Organization? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -41895,7 +41775,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Organization() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Organization)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -41910,13 +41790,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OrganizationMember + public partial class ShowEnvironmentCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_OrganizationMember { - public ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() + public ShowEnvironmentCommandQuery_Node_OrganizationMember() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -41953,7 +41833,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember)obj); + return Equals((ShowEnvironmentCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -41968,13 +41848,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 ShowEnvironmentCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_SchemaChangeLog { - public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() + public ShowEnvironmentCommandQuery_Node_SchemaChangeLog() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -42011,7 +41891,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog)obj); + return Equals((ShowEnvironmentCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -42026,13 +41906,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 ShowEnvironmentCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_SchemaDeployment { - public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() + public ShowEnvironmentCommandQuery_Node_SchemaDeployment() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -42069,7 +41949,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment)obj); + return Equals((ShowEnvironmentCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -42084,13 +41964,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 ShowEnvironmentCommandQuery_Node_Stage : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Stage { - public ListMcpFeatureCollectionCommandQuery_Node_Stage() + public ShowEnvironmentCommandQuery_Node_Stage() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Stage? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -42127,7 +42007,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Stage() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Stage)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -42142,13 +42022,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 ShowEnvironmentCommandQuery_Node_User : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_User { - public ListMcpFeatureCollectionCommandQuery_Node_User() + public ShowEnvironmentCommandQuery_Node_User() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_User? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -42185,7 +42065,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_User() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_User)obj); + return Equals((ShowEnvironmentCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -42200,13 +42080,13 @@ 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 ShowEnvironmentCommandQuery_Node_Workspace : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Workspace { - public ListMcpFeatureCollectionCommandQuery_Node_Workspace() + public ShowEnvironmentCommandQuery_Node_Workspace() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -42243,7 +42123,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_Workspace() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_Workspace)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -42258,13 +42138,13 @@ public ListMcpFeatureCollectionCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument + public partial class ShowEnvironmentCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_WorkspaceDocument { - public ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument() + public ShowEnvironmentCommandQuery_Node_WorkspaceDocument() { } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -42301,244 +42181,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection - { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo pageInfo) - { - Edges = edges; - PageInfo = pageInfo; - } - - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo PageInfo { get; } - - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); - } - - 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_McpFeatureCollections_ApiMcpFeatureCollectionsConnection)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge - { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node node) - { - Cursor = cursor; - Node = node; - } - - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node Node { get; } - - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); - } - - 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_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo - { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) - { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; - } - - /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. - /// - public global::System.String? StartCursor { get; } - - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); - } - - 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_McpFeatureCollections_PageInfo_PageInfo)obj); + return Equals((ShowEnvironmentCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -42546,18 +42189,6 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_ unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - return hash; } } @@ -42565,18 +42196,16 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection + public partial class ShowEnvironmentCommandQuery_Node_Workspace_Workspace : global::System.IEquatable, IShowEnvironmentCommandQuery_Node_Workspace_Workspace { - public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection(global::System.String id, global::System.String name) + public ShowEnvironmentCommandQuery_Node_Workspace_Workspace(global::System.String name) { - Id = id; Name = name; } - public global::System.String Id { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ShowEnvironmentCommandQuery_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -42593,7 +42222,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Nod return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -42613,7 +42242,7 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Nod return false; } - return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection)obj); + return Equals((ShowEnvironmentCommandQuery_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -42621,7 +42250,6 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Nod unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); return hash; } @@ -42630,12 +42258,12 @@ public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Nod // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQueryResult + public partial interface IShowEnvironmentCommandQueryResult { /// /// Fetches an object given its ID. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -42643,366 +42271,281 @@ public partial interface IListMcpFeatureCollectionCommandQueryResult /// The node interface is implemented by entities that have a global unique identifier. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Api : IListMcpFeatureCollectionCommandQuery_Node - { - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? McpFeatureCollections { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiDocument : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiKey : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Client : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientDeployment : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientVersion : IListMcpFeatureCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Environment : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_Api : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_ApiDocument : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_ApiKey : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_Client : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_ClientChangeLog : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_ClientDeployment : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_ClientVersion : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_Environment : IShowEnvironmentCommandQuery_Node, IEnvironmentDetailPrompt_Environment { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Group : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_Group : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Organization : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollection : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_OrganizationMember : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Stage : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollection : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_User : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_Workspace : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument : IListMcpFeatureCollectionCommandQuery_Node + public partial interface IShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections + public partial interface IShowEnvironmentCommandQuery_Node_Organization : IShowEnvironmentCommandQuery_Node { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections + public partial interface IShowEnvironmentCommandQuery_Node_OrganizationMember : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + public partial interface IShowEnvironmentCommandQuery_Node_SchemaChangeLog : IShowEnvironmentCommandQuery_Node { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges : IListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + public partial interface IShowEnvironmentCommandQuery_Node_SchemaDeployment : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges + public partial interface IShowEnvironmentCommandQuery_Node_Stage : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo : IPageInfo + public partial interface IShowEnvironmentCommandQuery_Node_User : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo + public partial interface IShowEnvironmentCommandQuery_Node_Workspace : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + public partial interface IShowEnvironmentCommandQuery_Node_WorkspaceDocument : IShowEnvironmentCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node : IListMcpFeatureCollectionCommandQuery_McpFeatureCollection + public partial interface IShowEnvironmentCommandQuery_Node_Workspace_1 { + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node + public partial interface IShowEnvironmentCommandQuery_Node_Workspace_Workspace : IShowEnvironmentCommandQuery_Node_Workspace_1 { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutationResult + public partial class CreateEnvironmentCommandMutationResult : global::System.IEquatable, ICreateEnvironmentCommandMutationResult { - public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection publishMcpFeatureCollection) + public CreateEnvironmentCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges pushWorkspaceChanges) { - PublishMcpFeatureCollection = publishMcpFeatureCollection; + PushWorkspaceChanges = pushWorkspaceChanges; } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection PublishMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -43019,7 +42562,7 @@ public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitr return false; } - return (PublishMcpFeatureCollection.Equals(other.PublishMcpFeatureCollection)); + return (PushWorkspaceChanges.Equals(other.PushWorkspaceChanges)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43039,7 +42582,7 @@ public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitr return false; } - return Equals((PublishMcpFeatureCollectionCommandMutationResult)obj); + return Equals((CreateEnvironmentCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -43047,7 +42590,7 @@ public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitr unchecked { int hash = 5; - hash ^= 397 * PublishMcpFeatureCollection.GetHashCode(); + hash ^= 397 * PushWorkspaceChanges.GetHashCode(); return hash; } } @@ -43055,18 +42598,18 @@ public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload { - public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(global::System.Collections.Generic.IReadOnlyList? changes, global::System.Collections.Generic.IReadOnlyList? errors) { - Id = id; + Changes = changes; Errors = errors; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload? other) { if (ReferenceEquals(null, other)) { @@ -43083,7 +42626,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Pu return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43103,7 +42646,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Pu return false; } - return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload)obj); } public override global::System.Int32 GetHashCode() @@ -43111,9 +42654,12 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Pu unchecked { int hash = 5; - if (Id != null) + if (Changes != null) { - hash ^= 397 * Id.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } } if (Errors != null) @@ -43131,23 +42677,20 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Pu // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload { - public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(global::System.String referenceId, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? error, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? result) { - this.__typename = __typename; - Message = message; - Name = name; + ReferenceId = referenceId; + Error = error; + Result = result; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } + public global::System.String ReferenceId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload? other) { if (ReferenceEquals(null, other)) { @@ -43164,7 +42707,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (ReferenceId.Equals(other.ReferenceId)) && ((Error is null && other.Error is null) || Error != null && Error.Equals(other.Error)) && ((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43184,7 +42727,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload)obj); } public override global::System.Int32 GetHashCode() @@ -43192,9 +42735,17 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * ReferenceId.GetHashCode(); + if (Error != null) + { + hash ^= 397 * Error.GetHashCode(); + } + + if (Result != null) + { + hash ^= 397 * Result.GetHashCode(); + } + return hash; } } @@ -43202,18 +42753,16 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(global::System.String message) { - McpFeatureCollectionId = mcpFeatureCollectionId; Message = message; } - public global::System.String McpFeatureCollectionId { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -43230,7 +42779,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43250,7 +42799,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -43258,7 +42807,6 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er unchecked { int hash = 5; - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -43267,21 +42815,16 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid { - public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(global::System.String message) { - this.__typename = __typename; Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid? other) { if (ReferenceEquals(null, other)) { @@ -43298,7 +42841,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43318,7 +42861,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid)obj); } public override global::System.Int32 GetHashCode() @@ -43326,7 +42869,6 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -43335,20 +42877,16 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed { - public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String mcpFeatureCollectionId) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(global::System.String message) { - Tag = tag; Message = message; - McpFeatureCollectionId = mcpFeatureCollectionId; } - public global::System.String Tag { get; } public global::System.String Message { get; } - public global::System.String McpFeatureCollectionId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -43365,7 +42903,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43385,7 +42923,7 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er return false; } - return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -43393,85 +42931,24 @@ public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Er unchecked { int hash = 5; - hash ^= 397 * Tag.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection PublishMcpFeatureCollection { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionVersionNotFoundError : IError - { - public global::System.String Tag { get; } - public global::System.String McpFeatureCollectionId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IMcpFeatureCollectionVersionNotFoundError - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscriptionResult + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict { - public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate onMcpFeatureCollectionVersionPublishingUpdate) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(global::System.String message) { - OnMcpFeatureCollectionVersionPublishingUpdate = onMcpFeatureCollectionVersionPublishingUpdate; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate OnMcpFeatureCollectionVersionPublishingUpdate { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscriptionResult? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict? other) { if (ReferenceEquals(null, other)) { @@ -43488,7 +42965,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream. return false; } - return (OnMcpFeatureCollectionVersionPublishingUpdate.Equals(other.OnMcpFeatureCollectionVersionPublishingUpdate)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43508,7 +42985,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream. return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscriptionResult)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict)obj); } public override global::System.Int32 GetHashCode() @@ -43516,7 +42993,7 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream. unchecked { int hash = 5; - hash ^= 397 * OnMcpFeatureCollectionVersionPublishingUpdate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -43524,23 +43001,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(global::System.String message) { - this.__typename = __typename; - State = state; - Errors = errors; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict? other) { if (ReferenceEquals(null, other)) { @@ -43557,7 +43027,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43577,7 +43047,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict)obj); } public override global::System.Int32 GetHashCode() @@ -43585,13 +43055,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -43599,21 +43063,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(global::System.String message) { - this.__typename = __typename; - State = state; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict? other) { if (ReferenceEquals(null, other)) { @@ -43630,7 +43089,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43650,7 +43109,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict)obj); } public override global::System.Int32 GetHashCode() @@ -43658,8 +43117,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -43667,21 +43125,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(global::System.String message) { - this.__typename = __typename; - State = state; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange? other) { if (ReferenceEquals(null, other)) { @@ -43698,7 +43151,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43718,7 +43171,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange)obj); } public override global::System.Int32 GetHashCode() @@ -43726,8 +43179,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -43735,21 +43187,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(global::System.String message) { - this.__typename = __typename; - State = state; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange? other) { if (ReferenceEquals(null, other)) { @@ -43766,7 +43213,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43786,7 +43233,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange)obj); } public override global::System.Int32 GetHashCode() @@ -43794,8 +43241,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -43803,26 +43249,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument() { - this.__typename = __typename; - Queued = queued; - QueuePosition = queuePosition; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -43839,7 +43272,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43859,7 +43292,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -43867,9 +43300,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Queued.GetHashCode(); - hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -43877,24 +43307,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api() { - this.__typename = __typename; - Ready = ready; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api? other) { if (ReferenceEquals(null, other)) { @@ -43911,7 +43330,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -43931,7 +43350,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api)obj); } public override global::System.Int32 GetHashCode() @@ -43939,8 +43358,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -43948,23 +43365,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument() { - this.__typename = __typename; - State = state; - Deployment = deployment; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -43981,7 +43388,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44001,7 +43408,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -44009,13 +43416,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - if (Deployment != null) - { - hash ^= 397 * Deployment.GetHashCode(); - } - return hash; } } @@ -44023,21 +43423,20 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(global::System.String name, global::System.String id, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? workspace) { - this.__typename = __typename; - Message = message; + Name = name; + Id = id; + Workspace = workspace; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? Workspace { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment? other) { if (ReferenceEquals(null, other)) { @@ -44054,7 +43453,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Name.Equals(other.Name)) && Id.Equals(other.Id) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44074,7 +43473,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -44082,8 +43481,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); + } + return hash; } } @@ -44091,16 +43495,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError + public partial class CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : global::System.IEquatable, ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(global::System.String name) { - Collections = collections; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -44117,7 +43521,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44137,7 +43541,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError)obj); + return Equals((CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -44145,33 +43549,169 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges PushWorkspaceChanges { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges + { + public global::System.Collections.Generic.IReadOnlyList? Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes + { + public global::System.String ReferenceId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? Error { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? Result { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_Environment : IEnvironmentDetailPrompt_Environment + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result, ICreateEnvironmentCommandMutation_Environment + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace : ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError + public partial class ListApiKeyCommandQueryResult : global::System.IEquatable, IListApiKeyCommandQueryResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public ListApiKeyCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? workspaceById) { - this.__typename = __typename; - Message = message; + WorkspaceById = workspaceById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? WorkspaceById { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -44188,7 +43728,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44208,7 +43748,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((ListApiKeyCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -44216,8 +43756,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (WorkspaceById != null) + { + hash ^= 397 * WorkspaceById.GetHashCode(); + } + return hash; } } @@ -44225,13 +43768,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError + public partial class ListApiKeyCommandQuery_WorkspaceById_Workspace : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_Workspace { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() + public ListApiKeyCommandQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? apiKeys) { + ApiKeys = apiKeys; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError? other) + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? ApiKeys { get; } + + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -44248,7 +43794,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return true; + return (((ApiKeys is null && other.ApiKeys is null) || ApiKeys != null && ApiKeys.Equals(other.ApiKeys))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44268,7 +43814,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -44276,28 +43822,39 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + if (ApiKeys != null) + { + hash ^= 397 * ApiKeys.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError + public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection? other) { if (ReferenceEquals(null, other)) { @@ -44314,7 +43871,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44334,7 +43891,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection)obj); } public override global::System.Int32 GetHashCode() @@ -44342,25 +43899,43 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment + public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node node) { - Errors = errors; + Cursor = cursor; + Node = node; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge? other) { if (ReferenceEquals(null, other)) { @@ -44377,7 +43952,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44397,7 +43972,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge)obj); } public override global::System.Int32 GetHashCode() @@ -44405,28 +43980,46 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment + public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - Errors = errors; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -44443,7 +44036,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44463,7 +44056,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -44471,9 +44064,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -44483,16 +44083,20 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment + public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? workspace) { - Errors = errors; + Id = id; + Name = name; + Workspace = workspace; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? Workspace { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -44509,7 +44113,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44529,7 +44133,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -44537,9 +44141,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Workspace != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Workspace.GetHashCode(); } return hash; @@ -44549,16 +44155,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment + public partial class ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace : global::System.IEquatable, IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(global::System.String name) { - Errors = errors; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -44575,7 +44181,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44595,7 +44201,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); + return Equals((ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -44603,28 +44209,163 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQueryResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? WorkspaceById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById + { + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? ApiKeys { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_Workspace : IListApiKeyCommandQuery_WorkspaceById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection : IListApiKeyCommandQuery_WorkspaceById_ApiKeys + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommand_ApiKeyEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges : IListApiKeyCommand_ApiKeyEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IApiKeyDetailPrompt_ApiKey + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? Workspace { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node : IListApiKeyCommand_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace : IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment + public partial class CreateApiKeyCommandMutationResult : global::System.IEquatable, ICreateApiKeyCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public CreateApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey createApiKey) { - Errors = errors; + CreateApiKey = createApiKey; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey CreateApiKey { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -44641,7 +44382,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (CreateApiKey.Equals(other.CreateApiKey)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44661,7 +44402,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment)obj); + return Equals((CreateApiKeyCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -44669,11 +44410,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * CreateApiKey.GetHashCode(); return hash; } } @@ -44681,18 +44418,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + Result = result; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? Result { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload? other) { if (ReferenceEquals(null, other)) { @@ -44709,7 +44446,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44729,7 +44466,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload)obj); } public override global::System.Int32 GetHashCode() @@ -44737,14 +44474,17 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - if (McpFeatureCollection != null) + if (Result != null) { - hash ^= 397 * McpFeatureCollection.GetHashCode(); + hash ^= 397 * Result.GetHashCode(); } - foreach (var Entities_elm in Entities) + if (Errors != null) { - hash ^= 397 * Entities_elm.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -44754,20 +44494,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError + public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key key, global::System.String secret) { - Message = message; - Client = client; - Queries = queries; + Key = key; + Secret = secret; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key Key { get; } + public global::System.String Secret { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret? other) { if (ReferenceEquals(null, other)) { @@ -44784,7 +44522,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Key.Equals(other.Key)) && Secret.Equals(other.Secret); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44804,7 +44542,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret)obj); } public override global::System.Int32 GetHashCode() @@ -44812,17 +44550,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - + hash ^= 397 * Key.GetHashCode(); + hash ^= 397 * Secret.GetHashCode(); return hash; } } @@ -44830,20 +44559,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { + this.__typename = __typename; Message = message; - Client = client; - Queries = queries; + ApiId = apiId; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -44860,7 +44592,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44880,7 +44612,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -44888,17 +44620,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -44906,18 +44630,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(global::System.String __typename, global::System.String message, global::System.String workspaceId) { + this.__typename = __typename; Message = message; - Changes = changes; + WorkspaceId = workspaceId; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String WorkspaceId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound? other) { if (ReferenceEquals(null, other)) { @@ -44934,7 +44663,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && WorkspaceId.Equals(other.WorkspaceId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -44954,7 +44683,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound)obj); } public override global::System.Int32 GetHashCode() @@ -44962,12 +44691,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * WorkspaceId.GetHashCode(); return hash; } } @@ -44975,13 +44701,12 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - Errors = errors; } /// @@ -44989,9 +44714,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError? other) { if (ReferenceEquals(null, other)) { @@ -45008,7 +44732,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45028,7 +44752,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError)obj); } public override global::System.Int32 GetHashCode() @@ -45038,11 +44762,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -45050,16 +44769,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - Collections = collections; + this.__typename = __typename; + Message = message; + Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError? other) { if (ReferenceEquals(null, other)) { @@ -45076,7 +44802,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45096,7 +44822,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -45104,9 +44830,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -45116,16 +44844,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(global::System.String message) { - Collections = collections; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -45142,7 +44870,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45162,7 +44890,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -45170,11 +44898,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -45182,16 +44906,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(global::System.String __typename, global::System.String message, global::System.String roleId) { - Collections = collections; + this.__typename = __typename; + Message = message; + RoleId = roleId; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String RoleId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -45208,7 +44939,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && RoleId.Equals(other.RoleId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45228,7 +44959,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -45236,11 +44967,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * RoleId.GetHashCode(); return hash; } } @@ -45248,16 +44977,20 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 + public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? workspace) { - Collections = collections; + Id = id; + Name = name; + Workspace = workspace; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? Workspace { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -45274,7 +45007,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45294,7 +45027,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -45302,9 +45035,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Workspace != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Workspace.GetHashCode(); } return hash; @@ -45314,20 +45049,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 + public partial class CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty(global::System.String message) { Message = message; - Client = client; - Queries = queries; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty? other) { if (ReferenceEquals(null, other)) { @@ -45344,7 +45075,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45364,7 +45095,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty)obj); } public override global::System.Int32 GetHashCode() @@ -45373,16 +45104,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - return hash; } } @@ -45390,18 +45111,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 + public partial class CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace : global::System.IEquatable, ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(global::System.String name) { - Message = message; - Changes = changes; + Name = name; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) + public virtual global::System.Boolean Equals(CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -45418,7 +45137,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45438,7 +45157,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); + return Equals((CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -45446,34 +45165,188 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError + public partial interface ICreateApiKeyCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) - { - this.__typename = __typename; - Message = message; - } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey CreateApiKey { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? Result { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload : ICreateApiKeyCommandMutation_CreateApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key Key { get; } + public global::System.String Secret { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret : ICreateApiKeyCommandMutation_CreateApiKey_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IWorkspaceNotFound : IError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String WorkspaceId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IWorkspaceNotFound + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPersonalWorkspaceNotSupportedError : 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 ICreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IPersonalWorkspaceNotSupportedError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidationError : IError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRoleNotFoundError : IError + { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::System.String RoleId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError : ICreateApiKeyCommandMutation_CreateApiKey_Errors, IRoleNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_ApiKey : IApiKeyDetailPrompt_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key : ICreateApiKeyCommandMutation_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey : ICreateApiKeyCommandMutation_CreateApiKey_Result_Key + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors + { public global::System.String Message { get; } + } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty : ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace : ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyCommandMutationResult : global::System.IEquatable, IDeleteApiKeyCommandMutationResult + { + public DeleteApiKeyCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey deleteApiKey) + { + DeleteApiKey = deleteApiKey; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey DeleteApiKey { get; } + + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -45490,7 +45363,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (DeleteApiKey.Equals(other.DeleteApiKey)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45510,7 +45383,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); + return Equals((DeleteApiKeyCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -45518,8 +45391,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * DeleteApiKey.GetHashCode(); return hash; } } @@ -45527,27 +45399,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError + public partial class DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? apiKey, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Message = message; - Column = column; - Position = position; - Line = line; + ApiKey = apiKey; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? ApiKey { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload? other) { if (ReferenceEquals(null, other)) { @@ -45564,7 +45427,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (((ApiKey is null && other.ApiKey is null) || ApiKey != null && ApiKey.Equals(other.ApiKey))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45584,7 +45447,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); + return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload)obj); } public override global::System.Int32 GetHashCode() @@ -45592,11 +45455,19 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + if (ApiKey != null) + { + hash ^= 397 * ApiKey.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -45604,23 +45475,20 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 + public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? workspace) { - this.__typename = __typename; - Message = message; - Errors = errors; + Id = id; + Name = name; + Workspace = workspace; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? Workspace { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -45637,7 +45505,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45657,7 +45525,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -45665,11 +45533,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Workspace != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Workspace.GetHashCode(); } return hash; @@ -45679,16 +45547,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 + public partial class DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiKeyId) { - Collections = collections; + this.__typename = __typename; + Message = message; + ApiKeyId = apiKeyId; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiKeyId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -45705,7 +45580,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiKeyId.Equals(other.ApiKeyId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45725,7 +45600,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -45733,11 +45608,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiKeyId.GetHashCode(); return hash; } } @@ -45745,16 +45618,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 + public partial class DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(global::System.String message) { - Collections = collections; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -45771,7 +45644,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45791,7 +45664,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -45799,11 +45672,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -45811,18 +45680,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace : global::System.IEquatable, IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace(global::System.String name) { - Id = id; Name = name; } - public global::System.String Id { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -45839,7 +45706,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45859,7 +45726,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -45867,27 +45734,106 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey DeleteApiKey { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? ApiKey { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload : IDeleteApiKeyCommandMutation_DeleteApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommand_ApiKey : IApiKeyDetailPrompt_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey : IDeleteApiKeyCommand_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IApiKeyNotFoundError + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiKeyId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError : IDeleteApiKeyCommandMutation_DeleteApiKey_Errors, IApiKeyNotFoundError, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation : IDeleteApiKeyCommandMutation_DeleteApiKey_Errors, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace_Workspace : IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_Workspace + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class UploadMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection uploadMcpFeatureCollection) { - Errors = errors; - Name = name; + UploadMcpFeatureCollection = uploadMcpFeatureCollection; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection UploadMcpFeatureCollection { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -45904,7 +45850,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (UploadMcpFeatureCollection.Equals(other.UploadMcpFeatureCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45924,7 +45870,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((UploadMcpFeatureCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -45932,12 +45878,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * UploadMcpFeatureCollection.GetHashCode(); return hash; } } @@ -45945,18 +45886,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? mcpFeatureCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) { + McpFeatureCollectionVersion = mcpFeatureCollectionVersion; Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? McpFeatureCollectionVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -45973,7 +45914,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (((McpFeatureCollectionVersion is null && other.McpFeatureCollectionVersion is null) || McpFeatureCollectionVersion != null && McpFeatureCollectionVersion.Equals(other.McpFeatureCollectionVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -45993,7 +45934,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -46001,12 +45942,19 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (McpFeatureCollectionVersion != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * McpFeatureCollectionVersion.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -46014,18 +45962,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(global::System.String id) { Id = id; - Name = name; } public global::System.String Id { get; } - public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -46042,7 +45988,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46062,7 +46008,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -46071,7 +46017,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -46079,22 +46024,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) { - DeployedTags = deployedTags; + McpFeatureCollectionId = mcpFeatureCollectionId; Message = message; - Hash = hash; - Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String McpFeatureCollectionId { get; } public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -46111,7 +46052,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46131,7 +46072,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -46139,18 +46080,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } - + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -46158,25 +46089,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -46193,7 +46120,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46213,7 +46140,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -46222,13 +46149,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46236,25 +46157,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -46271,7 +46188,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46291,7 +46208,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -46300,13 +46217,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46314,25 +46225,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError? other) { if (ReferenceEquals(null, other)) { @@ -46349,7 +46256,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46369,7 +46276,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError)obj); } public override global::System.Int32 GetHashCode() @@ -46378,13 +46285,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46392,25 +46293,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError? other) { if (ReferenceEquals(null, other)) { @@ -46427,7 +46319,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46447,7 +46339,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError)obj); } public override global::System.Int32 GetHashCode() @@ -46455,14 +46347,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46470,25 +46355,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange + public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -46505,7 +46381,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46525,7 +46401,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); + return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -46533,40 +46409,114 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection UploadMcpFeatureCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? McpFeatureCollectionVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion + { + public global::System.String Id { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionNotFoundError : IError + { + public global::System.String McpFeatureCollectionId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IConcurrentOperationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IDuplicatedTagError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInvalidMcpFeatureCollectionArchiveError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IInvalidMcpFeatureCollectionArchiveError, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange + public partial class ValidateMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection validateMcpFeatureCollection) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + ValidateMcpFeatureCollection = validateMcpFeatureCollection; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection ValidateMcpFeatureCollection { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -46583,7 +46533,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (ValidateMcpFeatureCollection.Equals(other.ValidateMcpFeatureCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46603,7 +46553,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -46611,14 +46561,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * ValidateMcpFeatureCollection.GetHashCode(); return hash; } } @@ -46626,23 +46569,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange + public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Id = id; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -46659,7 +46597,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46679,7 +46617,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -46687,9 +46625,19 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Id != null) + { + hash ^= 397 * Id.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -46697,21 +46645,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange + public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; - Severity = severity; + Message = message; + Name = name; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -46728,7 +46678,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46748,7 +46698,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -46757,7 +46707,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -46765,23 +46716,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange + public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + McpFeatureCollectionId = mcpFeatureCollectionId; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String McpFeatureCollectionId { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -46798,7 +46744,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46818,7 +46764,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -46826,9 +46772,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46836,25 +46781,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange + public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -46871,7 +46812,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46891,7 +46832,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -46900,13 +46841,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -46914,18 +46849,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError + public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) { Message = message; - Code = code; } public global::System.String Message { get; } - public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -46942,7 +46875,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -46962,7 +46895,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); + return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -46971,30 +46904,74 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection ValidateMcpFeatureCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection + { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection + public partial class ValidateMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscriptionResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate onMcpFeatureCollectionVersionValidationUpdate) { - OpenApiCollection = openApiCollection; - Entities = entities; + OnMcpFeatureCollectionVersionValidationUpdate = onMcpFeatureCollectionVersionValidationUpdate; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate OnMcpFeatureCollectionVersionValidationUpdate { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscriptionResult? other) { if (ReferenceEquals(null, other)) { @@ -47011,7 +46988,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (OnMcpFeatureCollectionVersionValidationUpdate.Equals(other.OnMcpFeatureCollectionVersionValidationUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47031,7 +47008,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscriptionResult)obj); } public override global::System.Int32 GetHashCode() @@ -47039,16 +47016,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - + hash ^= 397 * OnMcpFeatureCollectionVersionValidationUpdate.GetHashCode(); return hash; } } @@ -47056,18 +47024,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + this.__typename = __typename; + State = state; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -47084,7 +47057,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47104,7 +47077,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -47112,14 +47085,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Entities_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -47129,22 +47099,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Code = code; - Message = message; - Path = path; - Locations = locations; + this.__typename = __typename; + State = state; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess? other) { if (ReferenceEquals(null, other)) { @@ -47161,7 +47130,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47181,7 +47150,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -47189,25 +47158,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -47215,16 +47167,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Message = message; + this.__typename = __typename; + State = state; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -47241,7 +47198,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47261,7 +47218,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -47269,7 +47226,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -47277,22 +47235,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Message = message; - Code = code; - Path = path; - Locations = locations; + this.__typename = __typename; + State = state; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -47309,7 +47266,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47329,7 +47286,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -47337,25 +47294,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -47363,27 +47303,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError? other) { if (ReferenceEquals(null, other)) { @@ -47400,7 +47329,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47420,7 +47349,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError)obj); } public override global::System.Int32 GetHashCode() @@ -47428,11 +47357,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -47440,27 +47365,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -47477,7 +47391,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47497,7 +47411,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -47505,13 +47419,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -47521,27 +47431,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -47558,7 +47462,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47578,7 +47482,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -47587,10 +47491,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -47598,25 +47499,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -47633,7 +47522,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47653,7 +47542,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -47661,18 +47550,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -47680,23 +47557,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Location = location; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -47713,7 +47588,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47733,7 +47608,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -47742,8 +47617,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -47751,23 +47625,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Location = location; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -47784,7 +47653,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47804,7 +47673,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -47812,35 +47681,35 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); - return hash; - } - } - } + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -47857,7 +47726,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47877,7 +47746,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -47885,18 +47754,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -47904,23 +47763,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -47937,7 +47791,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -47957,7 +47811,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -47965,9 +47819,12 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -47975,25 +47832,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -48010,7 +47860,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48030,7 +47880,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -48038,14 +47888,12 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -48053,23 +47901,22 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Code = code; + Message = message; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -48086,7 +47933,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48106,7 +47953,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -48114,9 +47961,25 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -48124,25 +47987,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -48159,7 +48013,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48179,7 +48033,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -48187,18 +48041,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -48206,27 +48049,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange + public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Column = column; + Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -48243,7 +48077,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48263,7 +48097,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -48271,39 +48105,202 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscriptionResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate OnMcpFeatureCollectionVersionValidationUpdate { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionVersionValidationFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationFailed + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionVersionValidationSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationSuccess + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IOperationInProgress + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IValidationInProgress + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationArchiveError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationArchiveError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IProcessingTimeoutError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IUnexpectedProcessingError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange + public partial class DeleteMcpFeatureCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public DeleteMcpFeatureCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById deleteMcpFeatureCollectionById) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + DeleteMcpFeatureCollectionById = deleteMcpFeatureCollectionById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById DeleteMcpFeatureCollectionById { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -48320,7 +48317,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (DeleteMcpFeatureCollectionById.Equals(other.DeleteMcpFeatureCollectionById)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48340,7 +48337,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((DeleteMcpFeatureCollectionByIdCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -48348,11 +48345,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * DeleteMcpFeatureCollectionById.GetHashCode(); return hash; } } @@ -48360,27 +48353,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged + public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + McpFeatureCollection = mcpFeatureCollection; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload? other) { if (ReferenceEquals(null, other)) { @@ -48397,7 +48381,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48417,7 +48401,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload)obj); } public override global::System.Int32 GetHashCode() @@ -48425,13 +48409,17 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + if (McpFeatureCollection != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -48441,25 +48429,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 + public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Name = name; + Id = id; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -48476,7 +48457,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Name.Equals(other.Name)) && Id.Equals(other.Id); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48496,7 +48477,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -48504,18 +48485,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -48523,27 +48494,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 + public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError(global::System.String message, global::System.String mcpFeatureCollectionId) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Message = message; + McpFeatureCollectionId = mcpFeatureCollectionId; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Message { get; } + public global::System.String McpFeatureCollectionId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -48560,7 +48522,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Message.Equals(other.Message)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48580,7 +48542,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -48588,11 +48550,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); return hash; } } @@ -48600,27 +48559,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -48637,7 +48590,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48657,7 +48610,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -48665,35 +48618,90 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById DeleteMcpFeatureCollectionById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors, IMcpFeatureCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation : IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors, IUnauthorizedOperation + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class CreateMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutationResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public CreateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection createMcpFeatureCollection) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + CreateMcpFeatureCollection = createMcpFeatureCollection; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection CreateMcpFeatureCollection { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -48710,7 +48718,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (CreateMcpFeatureCollection.Equals(other.CreateMcpFeatureCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48730,7 +48738,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((CreateMcpFeatureCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -48738,9 +48746,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * CreateMcpFeatureCollection.GetHashCode(); return hash; } } @@ -48748,23 +48754,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + McpFeatureCollection = mcpFeatureCollection; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -48781,7 +48782,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48801,7 +48802,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -48809,9 +48810,19 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -48819,27 +48830,18 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged + public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(global::System.String name, global::System.String id) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Name = name; + Id = id; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -48856,7 +48858,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Name.Equals(other.Name)) && Id.Equals(other.Id); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48876,7 +48878,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -48884,15 +48886,8 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -48900,23 +48895,23 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded + public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) { + Message = message; this.__typename = __typename; - Severity = severity; - TypeName = typeName; + ApiId = apiId; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -48933,7 +48928,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -48953,7 +48948,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -48961,9 +48956,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -48971,23 +48966,21 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved + public partial class CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; this.__typename = __typename; - Severity = severity; - TypeName = typeName; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -49004,7 +48997,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49024,7 +49017,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -49032,35 +49025,85 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.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 + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection CreateMcpFeatureCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation : ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors, IUnauthorizedOperation + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 + public partial class ListMcpFeatureCollectionCommandQueryResult : global::System.IEquatable, IListMcpFeatureCollectionCommandQueryResult { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListMcpFeatureCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? node) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Node = node; } /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -49077,7 +49120,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49097,7 +49140,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((ListMcpFeatureCollectionCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -49105,16 +49148,9 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (Node != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); } return hash; @@ -49124,27 +49160,16 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 + public partial class ListMcpFeatureCollectionCommandQuery_Node_Api : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Api { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListMcpFeatureCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? mcpFeatureCollections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + McpFeatureCollections = mcpFeatureCollections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? McpFeatureCollections { get; } - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -49161,7 +49186,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (((McpFeatureCollections is null && other.McpFeatureCollections is null) || McpFeatureCollections != null && McpFeatureCollections.Equals(other.McpFeatureCollections))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49181,7 +49206,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -49189,11 +49214,11 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + if (McpFeatureCollections != null) + { + hash ^= 397 * McpFeatureCollections.GetHashCode(); + } + return hash; } } @@ -49201,27 +49226,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class ListMcpFeatureCollectionCommandQuery_Node_ApiDocument : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ApiDocument { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListMcpFeatureCollectionCommandQuery_Node_ApiDocument() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -49238,7 +49249,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49258,7 +49269,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -49266,11 +49277,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -49278,23 +49284,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ApiKey { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListMcpFeatureCollectionCommandQuery_Node_ApiKey() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -49311,7 +49307,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49331,7 +49327,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -49339,9 +49335,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -49349,23 +49342,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_Client : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Client { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListMcpFeatureCollectionCommandQuery_Node_Client() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -49382,7 +49365,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49402,7 +49385,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -49410,9 +49393,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -49420,27 +49400,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -49457,7 +49423,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49477,7 +49443,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -49485,15 +49451,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -49501,25 +49458,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 + public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientDeployment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -49536,7 +49481,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49556,7 +49501,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -49564,18 +49509,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -49583,25 +49516,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 + public partial class ListMcpFeatureCollectionCommandQuery_Node_ClientVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_ClientVersion { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListMcpFeatureCollectionCommandQuery_Node_ClientVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -49618,7 +49539,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49638,7 +49559,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -49646,18 +49567,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -49665,23 +49574,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded + public partial class ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -49698,7 +49597,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49718,7 +49617,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -49726,9 +49625,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -49736,23 +49632,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved + public partial class ListMcpFeatureCollectionCommandQuery_Node_Environment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Environment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListMcpFeatureCollectionCommandQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -49769,7 +49655,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49789,7 +49675,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -49797,9 +49683,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -49807,18 +49690,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog() { - Id = id; - Name = name; } - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -49835,7 +49713,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49855,7 +49733,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -49863,8 +49741,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -49872,20 +49748,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment() { - Errors = errors; - HttpMethod = httpMethod; - Route = route; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -49902,7 +49771,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49922,7 +49791,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -49930,13 +49799,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -49944,18 +49806,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { - Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -49972,7 +49829,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -49992,7 +49849,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50000,12 +49857,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -50013,18 +49864,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50041,7 +49887,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50061,7 +49907,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50069,8 +49915,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -50078,18 +49922,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50106,7 +49945,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50126,7 +49965,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50134,8 +49973,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -50143,23 +49980,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition() { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50176,7 +50003,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50196,7 +50023,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50204,13 +50031,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -50218,25 +50038,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50253,7 +50061,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50273,7 +50081,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50281,18 +50089,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -50300,25 +50096,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50335,7 +50119,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50355,7 +50139,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50363,10 +50147,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -50374,18 +50154,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { - Severity = severity; - DeprecationReason = deprecationReason; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50402,7 +50177,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50422,7 +50197,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50430,12 +50205,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -50443,25 +50212,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50478,7 +50235,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50498,7 +50255,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50506,18 +50263,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -50525,18 +50270,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() { - Severity = severity; - DeprecationReason = deprecationReason; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50553,7 +50293,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50573,7 +50313,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50581,12 +50321,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -50594,25 +50328,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50629,7 +50351,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50649,7 +50371,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50657,18 +50379,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -50676,25 +50386,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50711,7 +50409,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50731,7 +50429,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50739,10 +50437,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -50750,27 +50444,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50787,7 +50467,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50807,7 +50487,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50815,11 +50495,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -50827,27 +50502,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged + public partial class ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() { - Severity = severity; - Coordinate = coordinate; - Name = name; - this.__typename = __typename; - Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -50864,7 +50525,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50884,7 +50545,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -50892,15 +50553,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -50908,27 +50560,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved + public partial class ListMcpFeatureCollectionCommandQuery_Node_Group : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Group { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_Group() { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -50945,7 +50583,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -50965,7 +50603,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -50973,11 +50611,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -50985,18 +50618,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection() { - Severity = severity; - DeprecationReason = deprecationReason; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -51013,7 +50641,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51033,7 +50661,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -51041,12 +50669,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -51054,25 +50676,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -51089,7 +50699,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51109,7 +50719,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -51117,18 +50727,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -51136,25 +50734,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment() { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -51171,7 +50757,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51191,7 +50777,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -51199,10 +50785,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -51210,22 +50792,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion() { - Code = code; - Message = message; - Path = path; - Locations = locations; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -51242,7 +50815,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51262,7 +50835,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -51270,25 +50843,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -51296,16 +50850,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -51322,7 +50873,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51342,7 +50893,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -51350,7 +50901,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -51358,23 +50908,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -51391,7 +50931,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51411,7 +50951,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -51419,13 +50959,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - return hash; } } @@ -51433,25 +50966,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -51468,7 +50989,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51488,7 +51009,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -51496,18 +51017,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -51515,25 +51024,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged + public partial class ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion() { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -51550,7 +51047,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51570,7 +51067,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -51578,10 +51075,6 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -51589,18 +51082,13 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class ListMcpFeatureCollectionCommandQuery_Node_Organization : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Organization { - public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ListMcpFeatureCollectionCommandQuery_Node_Organization() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -51617,7 +51105,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -51637,7 +51125,7 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers return false; } - return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -51645,985 +51133,194 @@ public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVers unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscriptionResult + public partial class ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_OrganizationMember { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate OnMcpFeatureCollectionVersionPublishingUpdate { get; } - } + public ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate - { - public global::System.String __typename { get; } - } + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionVersionPublishFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishFailed - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionVersionPublishSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishSuccess - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IOperationInProgress - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskApproved - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsQueued - { - } + return Equals((ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsReady - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IWaitForApproval + public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog { - } + public ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors - { - } + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IConcurrentOperationError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IMcpFeatureCollectionValidationError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IProcessingTimeoutError - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IUnexpectedProcessingError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + public partial class ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } + return Equals((ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { + 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 UploadMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutationResult + public partial class ListMcpFeatureCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Stage { - public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection uploadMcpFeatureCollection) + public ListMcpFeatureCollectionCommandQuery_Node_Stage() { - UploadMcpFeatureCollection = uploadMcpFeatureCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection UploadMcpFeatureCollection { get; } - - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -52640,7 +51337,7 @@ public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro return false; } - return (UploadMcpFeatureCollection.Equals(other.UploadMcpFeatureCollection)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52660,7 +51357,7 @@ public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutationResult)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -52668,7 +51365,6 @@ public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro unchecked { int hash = 5; - hash ^= 397 * UploadMcpFeatureCollection.GetHashCode(); return hash; } } @@ -52676,18 +51372,13 @@ public UploadMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload + public partial class ListMcpFeatureCollectionCommandQuery_Node_User : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_User { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? mcpFeatureCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public ListMcpFeatureCollectionCommandQuery_Node_User() { - McpFeatureCollectionVersion = mcpFeatureCollectionVersion; - Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? McpFeatureCollectionVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -52704,7 +51395,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Uplo return false; } - return (((McpFeatureCollectionVersion is null && other.McpFeatureCollectionVersion is null) || McpFeatureCollectionVersion != null && McpFeatureCollectionVersion.Equals(other.McpFeatureCollectionVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52724,7 +51415,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Uplo return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -52732,19 +51423,6 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Uplo unchecked { int hash = 5; - if (McpFeatureCollectionVersion != null) - { - hash ^= 397 * McpFeatureCollectionVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - return hash; } } @@ -52752,16 +51430,13 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Uplo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion + public partial class ListMcpFeatureCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_Workspace { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(global::System.String id) + public ListMcpFeatureCollectionCommandQuery_Node_Workspace() { - Id = id; } - public global::System.String Id { get; } - - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -52778,7 +51453,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpF return false; } - return (Id.Equals(other.Id)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52798,7 +51473,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpF return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -52806,7 +51481,6 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpF unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -52814,18 +51488,13 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpF // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError + public partial class ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument() { - McpFeatureCollectionId = mcpFeatureCollectionId; - Message = message; } - public global::System.String McpFeatureCollectionId { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -52842,7 +51511,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52862,7 +51531,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -52870,30 +51539,34 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro unchecked { int hash = 5; - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection? other) { if (ReferenceEquals(null, other)) { @@ -52910,7 +51583,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52930,7 +51603,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection)obj); } public override global::System.Int32 GetHashCode() @@ -52938,30 +51611,43 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node node) { - this.__typename = __typename; - Message = message; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge? other) { if (ReferenceEquals(null, other)) { @@ -52978,7 +51664,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -52998,7 +51684,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -53006,30 +51692,46 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Message = message; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -53046,7 +51748,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -53066,7 +51768,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -53074,8 +51776,18 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -53083,16 +51795,18 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError : global::System.IEquatable, IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError + public partial class ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection : global::System.IEquatable, IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection { - public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError(global::System.String message) + public ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection(global::System.String id, global::System.String name) { - Message = message; + Id = id; + Name = name; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError? other) + public virtual global::System.Boolean Equals(ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -53109,7 +51823,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return (Message.Equals(other.Message)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -53129,7 +51843,7 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro return false; } - return Equals((UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError)obj); + return Equals((ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -53137,7 +51851,8 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -53145,93 +51860,379 @@ public UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Erro // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutationResult + public partial interface IListMcpFeatureCollectionCommandQueryResult { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection UploadMcpFeatureCollection { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection + public partial interface IListMcpFeatureCollectionCommandQuery_Node { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? McpFeatureCollectionVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Api : IListMcpFeatureCollectionCommandQuery_Node { + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? McpFeatureCollections { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion + public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiDocument : IListMcpFeatureCollectionCommandQuery_Node { - public global::System.String Id { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion + public partial interface IListMcpFeatureCollectionCommandQuery_Node_ApiKey : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Client : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError + public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IConcurrentOperationError + public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientDeployment : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IUnauthorizedOperation + public partial interface IListMcpFeatureCollectionCommandQuery_Node_ClientVersion : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IDuplicatedTagError + public partial interface IListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListMcpFeatureCollectionCommandQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInvalidMcpFeatureCollectionArchiveError + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Environment : IListMcpFeatureCollectionCommandQuery_Node { - public global::System.String Message { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError : IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors, IInvalidMcpFeatureCollectionArchiveError, IError + public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Group : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Organization : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_OrganizationMember : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Stage : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_User : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_Workspace : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument : IListMcpFeatureCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges : IListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_McpFeatureCollection : IMcpFeatureCollectionDetailPrompt_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node : IListMcpFeatureCollectionCommandQuery_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection : IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutationResult + public partial class PublishMcpFeatureCollectionCommandMutationResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutationResult { - public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection validateMcpFeatureCollection) + public PublishMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection publishMcpFeatureCollection) { - ValidateMcpFeatureCollection = validateMcpFeatureCollection; + PublishMcpFeatureCollection = publishMcpFeatureCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection ValidateMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection PublishMcpFeatureCollection { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -53248,7 +52249,7 @@ public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nit return false; } - return (ValidateMcpFeatureCollection.Equals(other.ValidateMcpFeatureCollection)); + return (PublishMcpFeatureCollection.Equals(other.PublishMcpFeatureCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -53268,7 +52269,7 @@ public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nit return false; } - return Equals((ValidateMcpFeatureCollectionCommandMutationResult)obj); + return Equals((PublishMcpFeatureCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -53276,7 +52277,7 @@ public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nit unchecked { int hash = 5; - hash ^= 397 * ValidateMcpFeatureCollection.GetHashCode(); + hash ^= 397 * PublishMcpFeatureCollection.GetHashCode(); return hash; } } @@ -53284,18 +52285,18 @@ public ValidateMcpFeatureCollectionCommandMutationResult(global::ChilliCream.Nit // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload { - public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { Id = id; Errors = errors; } public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -53332,7 +52333,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ return false; } - return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -53360,9 +52361,9 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError { - public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; Message = message; @@ -53376,7 +52377,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ public global::System.String Message { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -53413,7 +52414,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ return false; } - return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -53431,9 +52432,9 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError { - public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(global::System.String mcpFeatureCollectionId, global::System.String message) { McpFeatureCollectionId = mcpFeatureCollectionId; Message = message; @@ -53442,7 +52443,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ public global::System.String McpFeatureCollectionId { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -53479,7 +52480,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ return false; } - return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -53496,9 +52497,9 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation { - public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; @@ -53510,7 +52511,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -53547,7 +52548,7 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ return false; } - return Equals((ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -53562,63 +52563,213 @@ public ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError + { + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String mcpFeatureCollectionId) + { + Tag = tag; + Message = message; + McpFeatureCollectionId = mcpFeatureCollectionId; + } + + public global::System.String Tag { get; } + public global::System.String Message { get; } + public global::System.String McpFeatureCollectionId { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId); + } + + 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((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError + { + public PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) + { + Message = message; + } + + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Message.Equals(other.Message)); + } + + 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((PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + return hash; + } + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutationResult + public partial interface IPublishMcpFeatureCollectionCommandMutationResult { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection ValidateMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection PublishMcpFeatureCollection { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection { public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IStageNotFoundError + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IStageNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IMcpFeatureCollectionNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation : IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors, IUnauthorizedOperation + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionVersionNotFoundError : IError + { + public global::System.String Tag { get; } + public global::System.String McpFeatureCollectionId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IMcpFeatureCollectionVersionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError : IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors, IError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscriptionResult + public partial class PublishMcpFeatureCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscriptionResult { - public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate onMcpFeatureCollectionVersionValidationUpdate) + public PublishMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate onMcpFeatureCollectionVersionPublishingUpdate) { - OnMcpFeatureCollectionVersionValidationUpdate = onMcpFeatureCollectionVersionValidationUpdate; + OnMcpFeatureCollectionVersionPublishingUpdate = onMcpFeatureCollectionVersionPublishingUpdate; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate OnMcpFeatureCollectionVersionValidationUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate OnMcpFeatureCollectionVersionPublishingUpdate { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscriptionResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscriptionResult? other) { if (ReferenceEquals(null, other)) { @@ -53635,7 +52786,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream return false; } - return (OnMcpFeatureCollectionVersionValidationUpdate.Equals(other.OnMcpFeatureCollectionVersionValidationUpdate)); + return (OnMcpFeatureCollectionVersionPublishingUpdate.Equals(other.OnMcpFeatureCollectionVersionPublishingUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -53655,7 +52806,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscriptionResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscriptionResult)obj); } public override global::System.Int32 GetHashCode() @@ -53663,7 +52814,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream unchecked { int hash = 5; - hash ^= 397 * OnMcpFeatureCollectionVersionValidationUpdate.GetHashCode(); + hash ^= 397 * OnMcpFeatureCollectionVersionPublishingUpdate.GetHashCode(); return hash; } } @@ -53671,9 +52822,9 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult(global::ChilliCream // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; State = state; @@ -53685,9 +52836,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed? other) { if (ReferenceEquals(null, other)) { @@ -53724,7 +52875,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed)obj); } public override global::System.Int32 GetHashCode() @@ -53746,9 +52897,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; State = state; @@ -53760,7 +52911,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess? other) { if (ReferenceEquals(null, other)) { @@ -53797,7 +52948,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -53814,9 +52965,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; State = state; @@ -53828,7 +52979,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -53865,7 +53016,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -53882,9 +53033,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; State = state; @@ -53896,7 +53047,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved? other) { if (ReferenceEquals(null, other)) { @@ -53933,7 +53084,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved)obj); } public override global::System.Int32 GetHashCode() @@ -53950,16 +53101,26 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError(global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) { - Message = message; + this.__typename = __typename; + Queued = queued; + QueuePosition = queuePosition; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued? other) { if (ReferenceEquals(null, other)) { @@ -53976,7 +53137,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -53996,7 +53157,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued)obj); } public override global::System.Int32 GetHashCode() @@ -54004,7 +53165,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Queued.GetHashCode(); + hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -54012,16 +53175,24 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) { - Collections = collections; + this.__typename = __typename; + Ready = ready; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady? other) { if (ReferenceEquals(null, other)) { @@ -54038,7 +53209,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54058,7 +53229,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady)obj); } public override global::System.Int32 GetHashCode() @@ -54066,9 +53237,81 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Ready.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval + { + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) + { + this.__typename = __typename; + State = state; + Deployment = deployment; + } + + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); + } + + 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((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + if (Deployment != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Deployment.GetHashCode(); } return hash; @@ -54078,9 +53321,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; @@ -54092,7 +53335,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -54129,7 +53372,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -54146,13 +53389,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { + Collections = collections; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError? other) + public global::System.Collections.Generic.IReadOnlyList Collections { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -54169,7 +53415,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54189,7 +53435,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -54197,6 +53443,11 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -54204,9 +53455,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; @@ -54218,7 +53469,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -54255,7 +53506,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -54272,18 +53523,13 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -54300,7 +53546,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54320,7 +53566,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -54328,16 +53574,6 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -54345,18 +53581,21 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { - Id = id; - Name = name; + this.__typename = __typename; + Message = message; } - public global::System.String Id { get; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -54373,7 +53612,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54393,7 +53632,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -54401,8 +53640,8 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -54410,18 +53649,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) { Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -54438,7 +53675,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54458,7 +53695,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -54471,7 +53708,6 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer hash ^= 397 * Errors_elm.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -54479,18 +53715,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) { Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -54507,7 +53741,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54527,7 +53761,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -54540,7 +53774,6 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer hash ^= 397 * Errors_elm.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -54548,22 +53781,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Code = code; - Message = message; - Path = path; - Locations = locations; + Errors = errors; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -54580,7 +53807,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54600,7 +53827,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -54608,23 +53835,9 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) + foreach (var Errors_elm in Errors) { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -54634,16 +53847,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Message = message; + Errors = errors; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -54660,7 +53873,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (Message.Equals(other.Message)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54680,7 +53893,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -54688,7 +53901,11 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -54696,18 +53913,16 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment { - public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Column = column; - Line = line; + Errors = errors; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -54724,7 +53939,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54744,7 +53959,7 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer return false; } - return Equals((ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -54752,202 +53967,181 @@ public ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVer unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscriptionResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate OnMcpFeatureCollectionVersionValidationUpdate { get; } - } + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + { + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate - { - public global::System.String __typename { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionVersionValidationFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationFailed - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionVersionValidationSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IMcpFeatureCollectionVersionValidationSuccess - { - } + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IOperationInProgress - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate, IValidationInProgress - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMcpFeatureCollectionValidationArchiveError - { - public global::System.String Message { get; } - } + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationArchiveError - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationError - { - } + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IProcessingTimeoutError - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError { - } + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + { + Message = message; + Client = client; + Queries = queries; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors, IUnexpectedProcessingError - { - } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_McpFeatureCollection - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError - { - } + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaResult : global::System.IEquatable, ICreateMockSchemaResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 { - public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema createMockSchema) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - CreateMockSchema = createMockSchema; + Message = message; + Client = client; + Queries = queries; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema CreateMockSchema { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(CreateMockSchemaResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -54964,7 +54158,7 @@ public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICrea return false; } - return (CreateMockSchema.Equals(other.CreateMockSchema)); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -54984,7 +54178,7 @@ public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICrea return false; } - return Equals((CreateMockSchemaResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -54992,7 +54186,17 @@ public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICrea unchecked { int hash = 5; - hash ^= 397 * CreateMockSchema.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -55000,18 +54204,16 @@ public CreateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.ICrea // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_CreateMockSchemaPayload + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError { - public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - MockSchema = mockSchema; - Errors = errors; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MockSchema { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -55028,7 +54230,7 @@ public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliC return false; } - return (((MockSchema is null && other.MockSchema is null) || MockSchema != null && MockSchema.Equals(other.MockSchema))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55048,7 +54250,7 @@ public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliC return false; } - return Equals((CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -55056,17 +54258,9 @@ public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliC unchecked { int hash = 5; - if (MockSchema != null) - { - hash ^= 397 * MockSchema.GetHashCode(); - } - - if (Errors != null) + foreach (var Collections_elm in Collections) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -55076,30 +54270,16 @@ public CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(global::ChilliC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_MockSchema_MockSchema : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_MockSchema + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError { - public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Id = id; - Name = name; - CreatedAt = createdAt; - CreatedBy = createdBy; - ModifiedAt = modifiedAt; - ModifiedBy = modifiedBy; - DownstreamUrl = downstreamUrl; - Url = url; + Collections = collections; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } - public global::System.DateTimeOffset ModifiedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } - public global::System.Uri DownstreamUrl { get; } - public global::System.String Url { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_MockSchema? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -55116,7 +54296,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.St return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55136,7 +54316,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.St return false; } - return Equals((CreateMockSchema_CreateMockSchema_MockSchema_MockSchema)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -55144,14 +54324,11 @@ public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.St unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * CreatedBy.GetHashCode(); - hash ^= 397 * ModifiedAt.GetHashCode(); - hash ^= 397 * ModifiedBy.GetHashCode(); - hash ^= 397 * DownstreamUrl.GetHashCode(); - hash ^= 397 * Url.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -55159,23 +54336,18 @@ public CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(global::System.St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError { - public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - this.__typename = __typename; Message = message; - ApiId = apiId; + Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -55192,7 +54364,7 @@ public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System. return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55212,7 +54384,7 @@ public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System. return false; } - return Equals((CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -55220,9 +54392,12 @@ public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System. unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -55230,13 +54405,13 @@ public CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError { - public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; Message = message; - Name = name; + Errors = errors; } /// @@ -55244,9 +54419,9 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -55263,7 +54438,7 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55283,7 +54458,7 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo return false; } - return Equals((CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -55293,7 +54468,11 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -55301,13 +54480,16 @@ public CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 { - public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { + Collections = collections; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation? other) + public global::System.Collections.Generic.IReadOnlyList Collections { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -55324,7 +54506,7 @@ public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55344,7 +54526,7 @@ public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() return false; } - return Equals((CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -55352,6 +54534,11 @@ public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() unchecked { int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -55359,13 +54546,16 @@ public CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_Errors_ValidationError : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_Errors_ValidationError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 { - public CreateMockSchema_CreateMockSchema_Errors_ValidationError() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { + Collections = collections; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_Errors_ValidationError? other) + public global::System.Collections.Generic.IReadOnlyList Collections { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -55382,7 +54572,7 @@ public CreateMockSchema_CreateMockSchema_Errors_ValidationError() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55402,7 +54592,7 @@ public CreateMockSchema_CreateMockSchema_Errors_ValidationError() return false; } - return Equals((CreateMockSchema_CreateMockSchema_Errors_ValidationError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -55410,6 +54600,11 @@ public CreateMockSchema_CreateMockSchema_Errors_ValidationError() unchecked { int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -55417,16 +54612,20 @@ public CreateMockSchema_CreateMockSchema_Errors_ValidationError() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 { - public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Username = username; + Message = message; + Client = client; + Queries = queries; } - public global::System.String Username { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -55443,7 +54642,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::S return false; } - return (Username.Equals(other.Username)); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55463,7 +54662,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::S return false; } - return Equals((CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -55471,7 +54670,17 @@ public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::S unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -55479,16 +54688,16 @@ public CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo : global::System.IEquatable, ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 { - public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - Username = username; + Collections = collections; } - public global::System.String Username { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -55505,7 +54714,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: return false; } - return (Username.Equals(other.Username)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55525,7 +54734,7 @@ public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: return false; } - return Equals((CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -55533,138 +54742,28 @@ public CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchemaResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema CreateMockSchema { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MockSchema { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_CreateMockSchemaPayload : ICreateMockSchema_CreateMockSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMockSchemaDetailPrompt - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } - public global::System.DateTimeOffset ModifiedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } - public global::System.Uri DownstreamUrl { get; } - public global::System.String Url { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema : IMockSchemaDetailPrompt - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_MockSchema : ICreateMockSchema_CreateMockSchema_MockSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError : ICreateMockSchema_CreateMockSchema_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMockSchemaNonUniqueNameError : IError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError : ICreateMockSchema_CreateMockSchema_Errors, IMockSchemaNonUniqueNameError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation : ICreateMockSchema_CreateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_Errors_ValidationError : ICreateMockSchema_CreateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo : ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo : ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryResult : global::System.IEquatable, IListMockCommandQueryResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 { - public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? apiById) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - ApiById = apiById; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? ApiById { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(ListMockCommandQueryResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -55681,7 +54780,7 @@ public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55701,7 +54800,7 @@ public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return Equals((ListMockCommandQueryResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -55709,9 +54808,9 @@ public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I unchecked { int hash = 5; - if (ApiById != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * ApiById.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -55721,16 +54820,18 @@ public ListMockCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_Api : global::System.IEquatable, IListMockCommandQuery_ApiById_Api + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 { - public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? mockSchemas) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - MockSchemas = mockSchemas; + Message = message; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MockSchemas { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_Api? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) { if (ReferenceEquals(null, other)) { @@ -55747,7 +54848,7 @@ public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Cl return false; } - return (((MockSchemas is null && other.MockSchemas is null) || MockSchemas != null && MockSchemas.Equals(other.MockSchemas))); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55767,7 +54868,7 @@ public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Cl return false; } - return Equals((ListMockCommandQuery_ApiById_Api)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -55775,9 +54876,10 @@ public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Cl unchecked { int hash = 5; - if (MockSchemas != null) + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * MockSchemas.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -55786,28 +54888,22 @@ public ListMockCommandQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Cl } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError { - public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo pageInfo) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Message = message; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -55824,7 +54920,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::Sy return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55844,7 +54940,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::Sy return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -55852,43 +54948,36 @@ public ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(global::Sy unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError { - public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node node) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Message = message; + Column = column; + Position = position; + Line = line; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -55905,7 +54994,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::Sy return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -55925,7 +55014,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::Sy return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -55933,46 +55022,35 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::Sy unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 { - public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Message = message; + Errors = errors; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -55989,7 +55067,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56009,7 +55087,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -56017,16 +55095,11 @@ public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * StartCursor.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -56036,30 +55109,18 @@ public ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { Id = id; Name = name; - CreatedAt = createdAt; - CreatedBy = createdBy; - ModifiedAt = modifiedAt; - ModifiedBy = modifiedBy; - DownstreamUrl = downstreamUrl; - Url = url; } public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } - public global::System.DateTimeOffset ModifiedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } - public global::System.Uri DownstreamUrl { get; } - public global::System.String Url { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -56076,7 +55137,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::Sy return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56096,7 +55157,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::Sy return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -56106,12 +55167,6 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::Sy int hash = 5; hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * CreatedBy.GetHashCode(); - hash ^= 397 * ModifiedAt.GetHashCode(); - hash ^= 397 * ModifiedBy.GetHashCode(); - hash ^= 397 * DownstreamUrl.GetHashCode(); - hash ^= 397 * Url.GetHashCode(); return hash; } } @@ -56119,16 +55174,18 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Username = username; + Errors = errors; + Name = name; } - public global::System.String Username { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -56145,7 +55202,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(gl return false; } - return (Username.Equals(other.Username)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56165,7 +55222,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(gl return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -56173,7 +55230,12 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(gl unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -56181,16 +55243,18 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(gl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : global::System.IEquatable, IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Username = username; + Errors = errors; + Name = name; } - public global::System.String Username { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -56207,7 +55271,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(g return false; } - return (Username.Equals(other.Username)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56227,7 +55291,7 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(g return false; } - return Equals((ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -56235,167 +55299,31 @@ public ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(g unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? ApiById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById - { - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MockSchemas { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_Api : IListMockCommandQuery_ApiById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection : IListMockCommandQuery_ApiById_MockSchemas - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommand_MockEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges : IListMockCommand_MockEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : IListMockCommandQuery_ApiById_MockSchemas_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo : IListMockCommandQuery_ApiById_MockSchemas_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommand_Mock : IMockSchemaDetailPrompt - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node : IListMockCommand_Mock - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_CreatedBy - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : IListMockCommandQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaResult : global::System.IEquatable, IUpdateMockSchemaResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client { - public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema updateMockSchema) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) { - UpdateMockSchema = updateMockSchema; + Id = id; + Name = name; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema UpdateMockSchema { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(UpdateMockSchemaResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -56412,7 +55340,7 @@ public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpda return false; } - return (UpdateMockSchema.Equals(other.UpdateMockSchema)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56432,7 +55360,7 @@ public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpda return false; } - return Equals((UpdateMockSchemaResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -56440,7 +55368,8 @@ public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpda unchecked { int hash = 5; - hash ^= 397 * UpdateMockSchema.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -56448,18 +55377,22 @@ public UpdateMockSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUpda // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed { - public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? mockSchema, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - MockSchema = mockSchema; + DeployedTags = deployedTags; + Message = message; + Hash = hash; Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MockSchema { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -56476,7 +55409,7 @@ public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliC return false; } - return (((MockSchema is null && other.MockSchema is null) || MockSchema != null && MockSchema.Equals(other.MockSchema))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56496,7 +55429,7 @@ public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliC return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -56504,17 +55437,16 @@ public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliC unchecked { int hash = 5; - if (MockSchema != null) + foreach (var DeployedTags_elm in DeployedTags) { - hash ^= 397 * MockSchema.GetHashCode(); + hash ^= 397 * DeployedTags_elm.GetHashCode(); } - if (Errors != null) + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -56524,30 +55456,18 @@ public UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(global::ChilliC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection { - public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - Id = id; - Name = name; - CreatedAt = createdAt; - CreatedBy = createdBy; - ModifiedAt = modifiedAt; - ModifiedBy = modifiedBy; - DownstreamUrl = downstreamUrl; - Url = url; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } - public global::System.DateTimeOffset ModifiedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } - public global::System.Uri DownstreamUrl { get; } - public global::System.String Url { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -56564,7 +55484,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.St return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56584,7 +55504,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.St return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -56592,14 +55512,16 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.St unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * CreatedBy.GetHashCode(); - hash ^= 397 * ModifiedAt.GetHashCode(); - hash ^= 397 * ModifiedBy.GetHashCode(); - hash ^= 397 * DownstreamUrl.GetHashCode(); - hash ^= 397 * Url.GetHashCode(); + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -56607,23 +55529,18 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(global::System.St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection { - public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Message = message; - Name = name; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -56640,7 +55557,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(glo return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56660,7 +55577,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(glo return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -56668,9 +55585,16 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(glo unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -56678,21 +55602,25 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange { - public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global::System.String __typename, global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -56709,7 +55637,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global:: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56729,7 +55657,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global:: return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -56738,7 +55666,13 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global:: { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -56746,13 +55680,25 @@ public UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(global:: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange { - public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -56769,7 +55715,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56789,7 +55735,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -56797,6 +55743,14 @@ public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -56804,13 +55758,25 @@ public UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_Errors_ValidationError : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_Errors_ValidationError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange { - public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_Errors_ValidationError? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -56827,7 +55793,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56847,7 +55813,7 @@ public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_Errors_ValidationError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -56855,6 +55821,14 @@ public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -56862,16 +55836,25 @@ public UpdateMockSchema_UpdateMockSchema_Errors_ValidationError() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange { - public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Username = username; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Username { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -56888,7 +55871,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::S return false; } - return (Username.Equals(other.Username)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56908,7 +55891,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::S return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -56916,7 +55899,14 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::S unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -56924,16 +55914,25 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo : global::System.IEquatable, IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange { - public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global::System.String username) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Username = username; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Username { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -56950,7 +55949,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: return false; } - return (Username.Equals(other.Username)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -56970,7 +55969,7 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: return false; } - return Equals((UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -56978,123 +55977,40 @@ public UpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo(global:: unchecked { int hash = 5; - hash ^= 397 * Username.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchemaResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema UpdateMockSchema { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MockSchema { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload : IUpdateMockSchema_UpdateMockSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema : IMockSchemaDetailPrompt - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema : IUpdateMockSchema_UpdateMockSchema_MockSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError : IUpdateMockSchema_UpdateMockSchema_Errors, IMockSchemaNonUniqueNameError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange { - } + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IMockSchemaNotFoundError : 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 IUpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError : IUpdateMockSchema_UpdateMockSchema_Errors, IMockSchemaNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation : IUpdateMockSchema_UpdateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_Errors_ValidationError : IUpdateMockSchema_UpdateMockSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy_UserInfo : IUpdateMockSchema_UpdateMockSchema_MockSchema_CreatedBy - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy - { - public global::System.String Username { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy_UserInfo : IUpdateMockSchema_UpdateMockSchema_MockSchema_ModifiedBy - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationResult : global::System.IEquatable, ICreateOpenApiCollectionCommandMutationResult - { - public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection createOpenApiCollection) - { - CreateOpenApiCollection = createOpenApiCollection; - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection CreateOpenApiCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -57111,7 +56027,7 @@ public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co return false; } - return (CreateOpenApiCollection.Equals(other.CreateOpenApiCollection)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57131,7 +56047,7 @@ public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co return false; } - return Equals((CreateOpenApiCollectionCommandMutationResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -57139,7 +56055,14 @@ public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co unchecked { int hash = 5; - hash ^= 397 * CreateOpenApiCollection.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -57147,18 +56070,23 @@ public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange { - public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - OpenApiCollection = openApiCollection; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -57175,7 +56103,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpen return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57195,7 +56123,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpen return false; } - return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -57203,19 +56131,9 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpen unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -57223,18 +56141,21 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpen // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange { - public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { - Name = name; - Id = id; + this.__typename = __typename; + Severity = severity; } - public global::System.String Name { get; } - public global::System.String Id { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -57251,7 +56172,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCol return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57271,7 +56192,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCol return false; } - return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -57279,8 +56200,8 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCol unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -57288,23 +56209,23 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCol // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange { - public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Message = message; this.__typename = __typename; - ApiId = apiId; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String ApiId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -57321,7 +56242,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Api return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && ApiId.Equals(other.ApiId); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57341,7 +56262,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Api return false; } - return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -57349,9 +56270,9 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Api unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -57359,21 +56280,25 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Api // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange { - public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Message = message; this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -57390,7 +56315,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Una return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57410,7 +56335,7 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Una return false; } - return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -57418,90 +56343,33 @@ public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_Una unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection CreateOpenApiCollection { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionDetailPrompt_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors, IUnauthorizedOperation - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutationResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError { - public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById deleteOpenApiCollectionById) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - DeleteOpenApiCollectionById = deleteOpenApiCollectionById; + Message = message; + Code = code; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById DeleteOpenApiCollectionById { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -57518,7 +56386,7 @@ public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitr return false; } - return (DeleteOpenApiCollectionById.Equals(other.DeleteOpenApiCollectionById)); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57538,7 +56406,7 @@ public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitr return false; } - return Equals((DeleteOpenApiCollectionByIdCommandMutationResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -57546,7 +56414,12 @@ public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitr unchecked { int hash = 5; - hash ^= 397 * DeleteOpenApiCollectionById.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -57554,18 +56427,22 @@ public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - OpenApiCollection = openApiCollection; - Errors = errors; + Code = code; + Message = message; + Path = path; + Locations = locations; } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -57582,7 +56459,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_De return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57602,7 +56479,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_De return false; } - return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -57610,16 +56487,22 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_De unchecked { int hash = 5; - if (OpenApiCollection != null) + if (Code != null) { - hash ^= 397 * OpenApiCollection.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); } - if (Errors != null) + hash ^= 397 * Message.GetHashCode(); + if (Path != null) { - foreach (var Errors_elm in Errors) + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Locations_elm.GetHashCode(); } } @@ -57630,18 +56513,16 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_De // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - Name = name; - Id = id; + Message = message; } - public global::System.String Name { get; } - public global::System.String Id { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -57658,7 +56539,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Op return false; } - return (Name.Equals(other.Name)) && Id.Equals(other.Id); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57678,7 +56559,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Op return false; } - return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -57686,8 +56567,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Op unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -57695,18 +56575,22 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Op // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError { - public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError(global::System.String message, global::System.String openApiCollectionId) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { Message = message; - OpenApiCollectionId = openApiCollectionId; + Code = code; + Path = path; + Locations = locations; } public global::System.String Message { get; } - public global::System.String OpenApiCollectionId { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -57723,7 +56607,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er return false; } - return (Message.Equals(other.Message)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57743,7 +56627,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er return false; } - return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -57752,7 +56636,24 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er { int hash = 5; hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * OpenApiCollectionId.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -57760,21 +56661,18 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection { - public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - Message = message; - this.__typename = __typename; + Id = id; + Name = name; } - public global::System.String Message { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -57791,7 +56689,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57811,7 +56709,7 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er return false; } - return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -57819,92 +56717,29 @@ public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Er unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById DeleteOpenApiCollectionById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById - { - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionNotFoundError : IError - { - public global::System.String OpenApiCollectionId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors, IOpenApiCollectionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors, IUnauthorizedOperation - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQueryResult : global::System.IEquatable, IListOpenApiCollectionCommandQueryResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? node) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { - Node = node; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? Node { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQueryResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -57921,7 +56756,7 @@ public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.Command return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -57941,7 +56776,7 @@ public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.Command return false; } - return Equals((ListOpenApiCollectionCommandQueryResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -57949,11 +56784,13 @@ public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.Command unchecked { int hash = 5; - if (Node != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -57961,16 +56798,18 @@ public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.Command // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Api : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Api + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? openApiCollections) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - OpenApiCollections = openApiCollections; + Errors = errors; + Name = name; } - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? OpenApiCollections { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Api? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -57987,7 +56826,7 @@ public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.Comm return false; } - return (((OpenApiCollections is null && other.OpenApiCollections is null) || OpenApiCollections != null && OpenApiCollections.Equals(other.OpenApiCollections))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58007,7 +56846,7 @@ public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.Comm return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Api)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -58015,11 +56854,12 @@ public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.Comm unchecked { int hash = 5; - if (OpenApiCollections != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * OpenApiCollections.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -58027,13 +56867,27 @@ public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.Comm // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_ApiDocument : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ApiDocument + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded { - public ListOpenApiCollectionCommandQuery_Node_ApiDocument() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ApiDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -58050,7 +56904,7 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58070,7 +56924,7 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_ApiDocument)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -58078,6 +56932,11 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -58085,13 +56944,27 @@ public ListOpenApiCollectionCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ApiKey + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged { - public ListOpenApiCollectionCommandQuery_Node_ApiKey() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ApiKey? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -58108,7 +56981,7 @@ public ListOpenApiCollectionCommandQuery_Node_ApiKey() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58128,7 +57001,7 @@ public ListOpenApiCollectionCommandQuery_Node_ApiKey() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_ApiKey)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -58136,6 +57009,15 @@ public ListOpenApiCollectionCommandQuery_Node_ApiKey() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -58143,13 +57025,27 @@ public ListOpenApiCollectionCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Client : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Client + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved { - public ListOpenApiCollectionCommandQuery_Node_Client() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Client? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -58166,7 +57062,7 @@ public ListOpenApiCollectionCommandQuery_Node_Client() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58186,7 +57082,7 @@ public ListOpenApiCollectionCommandQuery_Node_Client() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Client)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -58194,6 +57090,11 @@ public ListOpenApiCollectionCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -58201,13 +57102,25 @@ public ListOpenApiCollectionCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientChangeLog + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged { - public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -58224,7 +57137,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58244,7 +57157,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_ClientChangeLog)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -58252,6 +57165,18 @@ public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -58259,13 +57184,23 @@ public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientDeployment + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded { - public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -58282,7 +57217,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58302,7 +57237,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_ClientDeployment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -58310,6 +57245,9 @@ public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -58317,13 +57255,23 @@ public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_ClientVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientVersion + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved { - public ListOpenApiCollectionCommandQuery_Node_ClientVersion() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -58340,7 +57288,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58360,7 +57308,7 @@ public ListOpenApiCollectionCommandQuery_Node_ClientVersion() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_ClientVersion)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -58368,6 +57316,9 @@ public ListOpenApiCollectionCommandQuery_Node_ClientVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -58375,13 +57326,25 @@ public ListOpenApiCollectionCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 { - public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -58398,7 +57361,7 @@ public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58418,7 +57381,7 @@ public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -58426,6 +57389,18 @@ public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -58433,13 +57408,23 @@ public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Environment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Environment + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded { - public ListOpenApiCollectionCommandQuery_Node_Environment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Environment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -58456,7 +57441,7 @@ public ListOpenApiCollectionCommandQuery_Node_Environment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58476,7 +57461,7 @@ public ListOpenApiCollectionCommandQuery_Node_Environment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Environment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -58484,6 +57469,9 @@ public ListOpenApiCollectionCommandQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -58491,13 +57479,25 @@ public ListOpenApiCollectionCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged { - public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -58514,7 +57514,7 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58534,7 +57534,7 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -58542,6 +57542,14 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -58549,13 +57557,23 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved { - public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -58572,7 +57590,7 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58592,7 +57610,7 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -58600,6 +57618,9 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -58607,13 +57628,25 @@ public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 { - public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -58630,7 +57663,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58650,7 +57683,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -58658,6 +57691,18 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -58665,13 +57710,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange { - public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -58688,7 +57747,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58708,7 +57767,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -58716,6 +57775,11 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -58723,13 +57787,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange { - public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -58746,7 +57824,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58766,7 +57844,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -58774,6 +57852,11 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -58781,13 +57864,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged { - public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -58804,7 +57901,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58824,7 +57921,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -58832,6 +57929,15 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -58839,13 +57945,25 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 { - public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -58862,7 +57980,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition( return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58882,7 +58000,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition( return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -58890,6 +58008,18 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition( unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -58897,13 +58027,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 { - public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -58920,7 +58064,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58940,7 +58084,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -58948,6 +58092,11 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -58955,13 +58104,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 { - public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -58978,7 +58141,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefin return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -58998,7 +58161,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefin return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -59006,6 +58169,11 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -59013,13 +58181,23 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded { - public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -59036,7 +58214,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59056,7 +58234,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -59064,6 +58242,9 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -59071,13 +58252,23 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved { - public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -59094,7 +58285,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59114,7 +58305,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -59122,6 +58313,9 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -59129,13 +58323,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged { - public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -59152,7 +58360,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefiniti return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59172,7 +58380,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefiniti return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -59180,6 +58388,15 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefiniti unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -59187,13 +58404,23 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefiniti // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded { - public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -59210,7 +58437,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59230,7 +58457,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -59238,6 +58465,9 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -59245,13 +58475,23 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved { - public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -59268,7 +58508,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59288,7 +58528,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -59296,6 +58536,9 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -59303,13 +58546,25 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 { - public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -59326,7 +58581,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59346,7 +58601,7 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -59354,6 +58609,18 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -59361,13 +58628,27 @@ public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Group : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Group + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 { - public ListOpenApiCollectionCommandQuery_Node_Group() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Group? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -59384,7 +58665,7 @@ public ListOpenApiCollectionCommandQuery_Node_Group() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59404,7 +58685,7 @@ public ListOpenApiCollectionCommandQuery_Node_Group() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Group)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -59412,6 +58693,11 @@ public ListOpenApiCollectionCommandQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -59419,13 +58705,27 @@ public ListOpenApiCollectionCommandQuery_Node_Group() // 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 partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -59442,7 +58742,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59462,7 +58762,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -59470,6 +58770,11 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -59477,13 +58782,23 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() // 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 partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -59500,7 +58815,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59520,7 +58835,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -59528,6 +58843,9 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -59535,13 +58853,23 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -59558,7 +58886,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59578,7 +58906,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -59586,6 +58914,9 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -59593,13 +58924,27 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 { - public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -59616,7 +58961,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59636,7 +58981,7 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -59644,6 +58989,15 @@ public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -59651,13 +59005,25 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -59674,7 +59040,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59694,7 +59060,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -59702,6 +59068,18 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -59709,13 +59087,25 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -59732,7 +59122,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59752,7 +59142,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -59760,6 +59150,18 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -59767,13 +59169,23 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -59790,7 +59202,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59810,7 +59222,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -59818,6 +59230,9 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -59825,13 +59240,23 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -59848,7 +59273,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59868,7 +59293,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -59876,6 +59301,9 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -59883,13 +59311,18 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public ListOpenApiCollectionCommandQuery_Node_Organization() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { + Column = column; + Line = line; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Organization? other) + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -59906,7 +59339,7 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() return false; } - return true; + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59926,7 +59359,7 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Organization)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -59934,6 +59367,8 @@ public ListOpenApiCollectionCommandQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -59941,13 +59376,18 @@ 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 PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { + Column = column; + Line = line; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OrganizationMember? other) + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -59964,7 +59404,7 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() return false; } - return true; + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -59984,7 +59424,7 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OrganizationMember)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -59992,6 +59432,8 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -59999,13 +59441,22 @@ public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { + Code = code; + Message = message; + Path = path; + Locations = locations; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog? other) + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -60022,7 +59473,7 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() return false; } - return true; + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60042,7 +59493,7 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -60050,6 +59501,25 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -60057,13 +59527,16 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_SchemaDeployment + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_SchemaDeployment? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -60080,7 +59553,7 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60100,7 +59573,7 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_SchemaDeployment)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -60108,6 +59581,7 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -60115,13 +59589,23 @@ public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Stage + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange { - public ListOpenApiCollectionCommandQuery_Node_Stage() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Stage? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -60138,7 +59622,7 @@ public ListOpenApiCollectionCommandQuery_Node_Stage() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60158,7 +59642,7 @@ public ListOpenApiCollectionCommandQuery_Node_Stage() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Stage)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -60166,6 +59650,13 @@ public ListOpenApiCollectionCommandQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -60173,13 +59664,25 @@ public ListOpenApiCollectionCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_User : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_User + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged { - public ListOpenApiCollectionCommandQuery_Node_User() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_User? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -60196,7 +59699,7 @@ public ListOpenApiCollectionCommandQuery_Node_User() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60216,7 +59719,7 @@ public ListOpenApiCollectionCommandQuery_Node_User() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_User)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -60224,6 +59727,18 @@ public ListOpenApiCollectionCommandQuery_Node_User() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -60231,13 +59746,25 @@ public ListOpenApiCollectionCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Workspace + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged { - public ListOpenApiCollectionCommandQuery_Node_Workspace() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Workspace? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -60254,7 +59781,7 @@ public ListOpenApiCollectionCommandQuery_Node_Workspace() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60274,7 +59801,7 @@ public ListOpenApiCollectionCommandQuery_Node_Workspace() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_Workspace)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -60282,6 +59809,10 @@ public ListOpenApiCollectionCommandQuery_Node_Workspace() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -60289,13 +59820,18 @@ public ListOpenApiCollectionCommandQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_WorkspaceDocument + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 { - public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -60312,7 +59848,7 @@ public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60332,7 +59868,7 @@ public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -60340,34 +59876,38 @@ public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo pageInfo) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - Edges = edges; - PageInfo = pageInfo; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo PageInfo { get; } + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -60384,7 +59924,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiColle return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60404,7 +59944,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiColle return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -60412,43 +59952,37 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiColle unchecked { int hash = 5; - if (Edges != null) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Old.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node node) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Cursor = cursor; - Node = node; + Severity = severity; + DeprecationReason = deprecationReason; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -60465,7 +59999,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenAp return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60485,7 +60019,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenAp return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -60493,46 +60027,38 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenAp unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -60549,7 +60075,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageIn return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60569,7 +60095,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageIn return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -60577,18 +60103,18 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageIn unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - if (StartCursor != null) + if (New != null) { - hash ^= 397 * StartCursor.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -60596,18 +60122,25 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageIn // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 { - public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Id = id; - Name = name; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -60624,7 +60157,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_Open return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -60644,7 +60177,7 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_Open return false; } - return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -60652,457 +60185,120 @@ public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_Open unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQueryResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded { + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; + } + + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } /// - /// Fetches an object given its ID. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? Node { get; } - } + public global::System.String __typename { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node - { - } + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Api : IListOpenApiCollectionCommandQuery_Node - { - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? OpenApiCollections { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_ApiDocument : IListOpenApiCollectionCommandQuery_Node - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_ApiKey : IListOpenApiCollectionCommandQuery_Node - { - } + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Client : IListOpenApiCollectionCommandQuery_Node - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_ClientChangeLog : IListOpenApiCollectionCommandQuery_Node - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_ClientDeployment : IListOpenApiCollectionCommandQuery_Node - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_ClientVersion : IListOpenApiCollectionCommandQuery_Node - { - } + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListOpenApiCollectionCommandQuery_Node - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Environment : IListOpenApiCollectionCommandQuery_Node + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged { - } + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + { + Severity = severity; + Coordinate = coordinate; + Name = name; + this.__typename = __typename; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListOpenApiCollectionCommandQuery_Node - { - } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Group : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollection : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Organization : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OrganizationMember : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaDeployment : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Stage : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_User : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_Workspace : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_WorkspaceDocument : IListOpenApiCollectionCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollectionEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges : IListOpenApiCollectionCommandQuery_OpenApiCollectionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node : IListOpenApiCollectionCommandQuery_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutationResult : global::System.IEquatable, IPublishOpenApiCollectionCommandMutationResult - { - public PublishOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection publishOpenApiCollection) - { - PublishOpenApiCollection = publishOpenApiCollection; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection PublishOpenApiCollection { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutationResult? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (PublishOpenApiCollection.Equals(other.PublishOpenApiCollection)); - } - - 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((PublishOpenApiCollectionCommandMutationResult)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * PublishOpenApiCollection.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload - { - public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) - { - Id = id; - Errors = errors; - } - - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } if (ReferenceEquals(this, other)) { @@ -61114,7 +60310,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishO return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61134,7 +60330,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishO return false; } - return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -61142,17 +60338,13 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishO unchecked { int hash = 5; - if (Id != null) - { - hash ^= 397 * Id.GetHashCode(); - } - - if (Errors != null) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -61162,23 +60354,27 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishO // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved { - public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; Name = name; + TypeName = typeName; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -61195,7 +60391,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61215,7 +60411,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_S return false; } - return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -61223,9 +60419,11 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_S unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -61233,18 +60431,18 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 { - public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - OpenApiCollectionId = openApiCollectionId; - Message = message; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.String OpenApiCollectionId { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -61261,7 +60459,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O return false; } - return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61281,7 +60479,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O return false; } - return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -61289,8 +60487,12 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O unchecked { int hash = 5; - hash ^= 397 * OpenApiCollectionId.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -61298,21 +60500,25 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 { - public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -61329,7 +60535,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_U return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61349,7 +60555,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_U return false; } - return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -61357,8 +60563,18 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_U unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -61366,20 +60582,25 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_U // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 { - public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String openApiCollectionId) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Tag = tag; - Message = message; - OpenApiCollectionId = openApiCollectionId; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.String Tag { get; } - public global::System.String Message { get; } - public global::System.String OpenApiCollectionId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -61396,7 +60617,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O return false; } - return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && OpenApiCollectionId.Equals(other.OpenApiCollectionId); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61416,7 +60637,7 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O return false; } - return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -61424,85 +60645,29 @@ public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_O unchecked { int hash = 5; - hash ^= 397 * Tag.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection PublishOpenApiCollection { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IOpenApiCollectionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionVersionNotFoundError : IError - { - public global::System.String Tag { get; } - public global::System.String OpenApiCollectionId { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IOpenApiCollectionVersionNotFoundError - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscriptionResult + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate onOpenApiCollectionVersionPublishingUpdate) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - OnOpenApiCollectionVersionPublishingUpdate = onOpenApiCollectionVersionPublishingUpdate; + Column = column; + Line = line; } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate OnOpenApiCollectionVersionPublishingUpdate { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscriptionResult? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -61519,7 +60684,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nit return false; } - return (OnOpenApiCollectionVersionPublishingUpdate.Equals(other.OnOpenApiCollectionVersionPublishingUpdate)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61539,7 +60704,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nit return false; } - return Equals((PublishOpenApiCollectionCommandSubscriptionResult)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -61547,7 +60712,8 @@ public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nit unchecked { int hash = 5; - hash ^= 397 * OnOpenApiCollectionVersionPublishingUpdate.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -61555,23 +60721,23 @@ public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nit // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { this.__typename = __typename; - State = state; - Errors = errors; + Severity = severity; + DeprecationReason = deprecationReason; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -61588,7 +60754,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61608,7 +60774,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -61617,10 +60783,10 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -61630,21 +60796,25 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - State = state; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -61661,7 +60831,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61681,7 +60851,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -61690,7 +60860,17 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -61698,21 +60878,25 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress + public partial class PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; - State = state; + Severity = severity; + OldType = oldType; + NewType = newType; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -61729,7 +60913,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -61749,7 +60933,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress)obj); + return Equals((PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -61758,451 +60942,986 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved + public partial interface IPublishMcpFeatureCollectionCommandSubscriptionResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) - { - this.__typename = __typename; - State = state; - } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate OnMcpFeatureCollectionVersionPublishingUpdate { get; } + } - /// - /// The name of the current Object type at runtime. - /// + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate + { public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionVersionPublishFailed + { public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishFailed + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionVersionPublishSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IMcpFeatureCollectionVersionPublishSuccess + { + } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IOperationInProgress + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskApproved + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsQueued + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IProcessingTaskIsReady + { + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate, IWaitForApproval + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IConcurrentOperationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) - { - this.__typename = __typename; - Queued = queued; - QueuePosition = queuePosition; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IMcpFeatureCollectionValidationError + { + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IProcessingTimeoutError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors, IUnexpectedProcessingError + { + } - return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_ClientDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Queued.GetHashCode(); - hash ^= 397 * QueuePosition.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) - { - this.__typename = __typename; - Ready = ready; - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections + { + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1 + { + } - return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError + { + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Ready.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_2 + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) - { - this.__typename = __typename; - State = state; - Deployment = deployment; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_3 + { + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4 + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError + { + } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError + { + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - if (Deployment != null) - { - hash ^= 397 * Deployment.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_McpFeatureCollection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) - { - this.__typename = __typename; - Message = message; - } + } - /// - /// 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 IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections + { + } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange + { + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) - { - Collections = collections; - } + } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange + { + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Errors + { + } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError + public partial class ListPersonalAccessTokenCommandQueryResult : global::System.IEquatable, IListPersonalAccessTokenCommandQueryResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? me) { - this.__typename = __typename; - Message = message; + Me = me; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? Me { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -62219,7 +61938,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62239,7 +61958,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((ListPersonalAccessTokenCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -62247,8 +61966,11 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Me != null) + { + hash ^= 397 * Me.GetHashCode(); + } + return hash; } } @@ -62256,13 +61978,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError + public partial class ListPersonalAccessTokenCommandQuery_Me_Viewer : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_Viewer { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() + public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? personalAccessTokens) { + PersonalAccessTokens = personalAccessTokens; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError? other) + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? PersonalAccessTokens { get; } + + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_Viewer? other) { if (ReferenceEquals(null, other)) { @@ -62279,7 +62004,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return true; + return (((PersonalAccessTokens is null && other.PersonalAccessTokens is null) || PersonalAccessTokens != null && PersonalAccessTokens.Equals(other.PersonalAccessTokens))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62299,7 +62024,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); + return Equals((ListPersonalAccessTokenCommandQuery_Me_Viewer)obj); } public override global::System.Int32 GetHashCode() @@ -62307,28 +62032,39 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; + if (PersonalAccessTokens != null) + { + hash ^= 397 * PersonalAccessTokens.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError + public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection? other) { if (ReferenceEquals(null, other)) { @@ -62345,7 +62081,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62365,7 +62101,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection)obj); } public override global::System.Int32 GetHashCode() @@ -62373,25 +62109,43 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment + public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node node) { - Errors = errors; + Cursor = cursor; + Node = node; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment? other) + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge? other) { if (ReferenceEquals(null, other)) { @@ -62408,7 +62162,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62428,7 +62182,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment)obj); + return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge)obj); } public override global::System.Int32 GetHashCode() @@ -62436,28 +62190,46 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment + public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - Errors = errors; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -62474,7 +62246,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62494,7 +62266,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); + return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -62502,9 +62274,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -62514,16 +62293,22 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment + public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset expiresAt, global::System.DateTimeOffset createdAt) { - Errors = errors; + Id = id; + Description = description; + ExpiresAt = expiresAt; + CreatedAt = createdAt; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Id { get; } + public global::System.String Description { get; } + public global::System.DateTimeOffset ExpiresAt { get; } + public global::System.DateTimeOffset CreatedAt { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken? other) { if (ReferenceEquals(null, other)) { @@ -62540,7 +62325,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Id.Equals(other.Id)) && Description.Equals(other.Description) && ExpiresAt.Equals(other.ExpiresAt) && CreatedAt.Equals(other.CreatedAt); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62560,7 +62345,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); + return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken)obj); } public override global::System.Int32 GetHashCode() @@ -62568,30 +62353,156 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Description.GetHashCode(); + hash ^= 397 * ExpiresAt.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment + public partial interface IListPersonalAccessTokenCommandQueryResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) - { - Errors = errors; - } - - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? Me { get; } + } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) - { - if (ReferenceEquals(null, other)) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me + { + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? PersonalAccessTokens { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_Viewer : IListPersonalAccessTokenCommandQuery_Me + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommand_PersonalAccessTokenEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges : IListPersonalAccessTokenCommand_PersonalAccessTokenEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPersonalAccessTokenDetailPrompt_PersonalAccessToken + { + public global::System.String Id { get; } + public global::System.String Description { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.DateTimeOffset ExpiresAt { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node : IListPersonalAccessTokenCommand_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreatePersonalAccessTokenCommandMutationResult : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutationResult + { + public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken createPersonalAccessToken) + { + CreatePersonalAccessToken = createPersonalAccessToken; + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken CreatePersonalAccessToken { get; } + + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutationResult? other) + { + if (ReferenceEquals(null, other)) { return false; } @@ -62606,7 +62517,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (CreatePersonalAccessToken.Equals(other.CreatePersonalAccessToken)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62626,7 +62537,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); + return Equals((CreatePersonalAccessTokenCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -62634,11 +62545,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * CreatePersonalAccessToken.GetHashCode(); return hash; } } @@ -62646,16 +62553,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment + public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) { + Result = result; Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? Result { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload? other) { if (ReferenceEquals(null, other)) { @@ -62672,7 +62581,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62692,7 +62601,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment)obj); + return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload)obj); } public override global::System.Int32 GetHashCode() @@ -62700,9 +62609,17 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (Result != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Result.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -62712,18 +62629,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection + public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token token, global::System.String secret) { - OpenApiCollection = openApiCollection; - Entities = entities; + Token = token; + Secret = secret; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token Token { get; } + public global::System.String Secret { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret? other) { if (ReferenceEquals(null, other)) { @@ -62740,7 +62657,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (Token.Equals(other.Token)) && Secret.Equals(other.Secret); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62760,7 +62677,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret)obj); } public override global::System.Int32 GetHashCode() @@ -62768,16 +62685,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - + hash ^= 397 * Token.GetHashCode(); + hash ^= 397 * Secret.GetHashCode(); return hash; } } @@ -62785,20 +62694,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError + public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError(global::System.String message) { Message = message; - Client = client; - Queries = queries; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError? other) { if (ReferenceEquals(null, other)) { @@ -62815,7 +62720,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62835,7 +62740,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); + return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -62844,16 +62749,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - return hash; } } @@ -62861,20 +62756,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 + public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; - Client = client; - Queries = queries; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -62891,7 +62787,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62911,7 +62807,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); + return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -62919,17 +62815,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - return hash; } } @@ -62937,18 +62824,22 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError + public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) { - Message = message; - Changes = changes; + Id = id; + Description = description; + CreatedAt = createdAt; + ExpiresAt = expiresAt; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Id { get; } + public global::System.String Description { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.DateTimeOffset ExpiresAt { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken? other) { if (ReferenceEquals(null, other)) { @@ -62965,7 +62856,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Id.Equals(other.Id)) && Description.Equals(other.Description) && CreatedAt.Equals(other.CreatedAt) && ExpiresAt.Equals(other.ExpiresAt); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -62985,7 +62876,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); + return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken)obj); } public override global::System.Int32 GetHashCode() @@ -62993,36 +62884,98 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Description.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * ExpiresAt.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken CreatePersonalAccessToken { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? Result { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token Token { get; } + public global::System.String Secret { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token : ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError + public partial class RevokePersonalAccessTokenCommandMutationResult : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutationResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken revokePersonalAccessToken) { - this.__typename = __typename; - Message = message; - Errors = errors; + RevokePersonalAccessToken = revokePersonalAccessToken; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken RevokePersonalAccessToken { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -63039,7 +62992,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (RevokePersonalAccessToken.Equals(other.RevokePersonalAccessToken)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63059,7 +63012,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); + return Equals((RevokePersonalAccessTokenCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -63067,13 +63020,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * RevokePersonalAccessToken.GetHashCode(); return hash; } } @@ -63081,16 +63028,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError + public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? personalAccessToken, global::System.Collections.Generic.IReadOnlyList? errors) { - Collections = collections; + PersonalAccessToken = personalAccessToken; + Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? PersonalAccessToken { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload? other) { if (ReferenceEquals(null, other)) { @@ -63107,7 +63056,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (((PersonalAccessToken is null && other.PersonalAccessToken is null) || PersonalAccessToken != null && PersonalAccessToken.Equals(other.PersonalAccessToken))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63127,7 +63076,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); + return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload)obj); } public override global::System.Int32 GetHashCode() @@ -63135,9 +63084,17 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + if (PersonalAccessToken != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * PersonalAccessToken.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -63147,16 +63104,22 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError + public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) { - Collections = collections; + Id = id; + Description = description; + CreatedAt = createdAt; + ExpiresAt = expiresAt; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Id { get; } + public global::System.String Description { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.DateTimeOffset ExpiresAt { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken? other) { if (ReferenceEquals(null, other)) { @@ -63173,7 +63136,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Id.Equals(other.Id)) && Description.Equals(other.Description) && CreatedAt.Equals(other.CreatedAt) && ExpiresAt.Equals(other.ExpiresAt); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63193,7 +63156,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); + return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken)obj); } public override global::System.Int32 GetHashCode() @@ -63201,11 +63164,10 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Description.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * ExpiresAt.GetHashCode(); return hash; } } @@ -63213,16 +63175,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 + public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String message) { - Collections = collections; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -63239,7 +63201,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63259,7 +63221,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); + return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -63267,11 +63229,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -63279,16 +63237,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 + public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError(global::System.String __typename, global::System.String message) { - Collections = collections; + this.__typename = __typename; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -63305,7 +63268,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63325,7 +63288,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); + return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -63333,32 +63296,92 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken RevokePersonalAccessToken { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken + { + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? PersonalAccessToken { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommand_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPersonalAccessTokenNotFoundError : 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 IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors, IPersonalAccessTokenNotFoundError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 + public partial class UploadOpenApiCollectionCommandMutationResult : global::System.IEquatable, IUploadOpenApiCollectionCommandMutationResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection uploadOpenApiCollection) { - Message = message; - Client = client; - Queries = queries; + UploadOpenApiCollection = uploadOpenApiCollection; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection UploadOpenApiCollection { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -63375,7 +63398,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (UploadOpenApiCollection.Equals(other.UploadOpenApiCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63395,7 +63418,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); + return Equals((UploadOpenApiCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -63403,17 +63426,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - + hash ^= 397 * UploadOpenApiCollection.GetHashCode(); return hash; } } @@ -63421,18 +63434,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? openApiCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) { - Message = message; - Changes = changes; + OpenApiCollectionVersion = openApiCollectionVersion; + Errors = errors; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? OpenApiCollectionVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -63449,7 +63462,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (((OpenApiCollectionVersion is null && other.OpenApiCollectionVersion is null) || OpenApiCollectionVersion != null && OpenApiCollectionVersion.Equals(other.OpenApiCollectionVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63469,7 +63482,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -63477,10 +63490,17 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) + if (OpenApiCollectionVersion != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * OpenApiCollectionVersion.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -63490,21 +63510,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(global::System.String id) { - this.__typename = __typename; - Message = message; + Id = id; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -63521,7 +63536,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63541,7 +63556,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -63549,8 +63564,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -63558,27 +63572,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) { - this.__typename = __typename; + OpenApiCollectionId = openApiCollectionId; Message = message; - Column = column; - Position = position; - Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String OpenApiCollectionId { get; } public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -63595,7 +63600,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63615,7 +63620,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -63623,11 +63628,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * OpenApiCollectionId.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -63635,13 +63637,12 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - Errors = errors; } /// @@ -63649,9 +63650,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -63668,7 +63668,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63688,7 +63688,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -63698,11 +63698,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -63710,16 +63705,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { - Collections = collections; + this.__typename = __typename; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -63736,7 +63736,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63756,7 +63756,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -63764,11 +63764,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -63776,16 +63773,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) { - Collections = collections; + this.__typename = __typename; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError? other) { if (ReferenceEquals(null, other)) { @@ -63802,7 +63804,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63822,7 +63824,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError)obj); } public override global::System.Int32 GetHashCode() @@ -63830,11 +63832,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -63842,18 +63841,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError(global::System.String message) { - Id = id; - Name = name; + Message = message; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError? other) { if (ReferenceEquals(null, other)) { @@ -63870,7 +63867,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63890,7 +63887,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError)obj); } public override global::System.Int32 GetHashCode() @@ -63898,8 +63895,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -63907,20 +63903,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) { - Errors = errors; - HttpMethod = httpMethod; - Route = route; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -63937,7 +63929,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -63957,7 +63949,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -63965,32 +63957,117 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection UploadOpenApiCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? OpenApiCollectionVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion + { + public global::System.String Id { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionNotFoundError : IError + { + public global::System.String OpenApiCollectionId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IOpenApiCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IConcurrentOperationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IDuplicatedTagError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInvalidOpenApiCollectionArchiveError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IInvalidOpenApiCollectionArchiveError, IError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class ListOpenApiCollectionCommandQueryResult : global::System.IEquatable, IListOpenApiCollectionCommandQueryResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public ListOpenApiCollectionCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? node) { - Errors = errors; - Name = name; + Node = node; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -64007,7 +64084,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64027,7 +64104,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((ListOpenApiCollectionCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -64035,12 +64112,11 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (Node != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -64048,18 +64124,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client + public partial class ListOpenApiCollectionCommandQuery_Node_Api : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Api { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) + public ListOpenApiCollectionCommandQuery_Node_Api(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? openApiCollections) { - Id = id; - Name = name; + OpenApiCollections = openApiCollections; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? OpenApiCollections { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -64076,7 +64150,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (((OpenApiCollections is null && other.OpenApiCollections is null) || OpenApiCollections != null && OpenApiCollections.Equals(other.OpenApiCollections))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64096,7 +64170,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -64104,8 +64178,11 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + if (OpenApiCollections != null) + { + hash ^= 397 * OpenApiCollections.GetHashCode(); + } + return hash; } } @@ -64113,22 +64190,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed + public partial class ListOpenApiCollectionCommandQuery_Node_ApiDocument : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ApiDocument { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public ListOpenApiCollectionCommandQuery_Node_ApiDocument() { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -64145,7 +64213,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64165,7 +64233,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -64173,18 +64241,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -64192,25 +64248,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_ApiKey : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ApiKey { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_ApiKey() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -64227,7 +64271,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64247,7 +64291,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -64255,14 +64299,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64270,25 +64306,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_Client : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Client { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_Client() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -64305,7 +64329,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64325,7 +64349,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -64333,14 +64357,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64348,25 +64364,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientChangeLog { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_ClientChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -64383,7 +64387,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64403,7 +64407,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -64411,14 +64415,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64426,25 +64422,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_ClientDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_ClientDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -64461,7 +64445,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64481,7 +64465,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -64489,14 +64473,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64504,25 +64480,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_ClientVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_ClientVersion { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_ClientVersion() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -64539,7 +64503,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64559,7 +64523,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -64567,14 +64531,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64582,25 +64538,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -64617,7 +64561,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64637,7 +64581,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -64645,14 +64589,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64660,23 +64596,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange + public partial class ListOpenApiCollectionCommandQuery_Node_Environment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Environment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListOpenApiCollectionCommandQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -64693,7 +64619,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64713,7 +64639,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -64721,9 +64647,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -64731,21 +64654,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog() { - this.__typename = __typename; - Severity = severity; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -64762,7 +64677,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64782,7 +64697,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -64790,8 +64705,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -64799,23 +64712,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange + public partial class ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -64832,7 +64735,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64852,7 +64755,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -64860,9 +64763,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -64870,25 +64770,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -64905,7 +64793,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64925,7 +64813,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -64933,14 +64821,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -64948,18 +64828,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition() { - Message = message; - Code = code; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -64976,7 +64851,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -64996,7 +64871,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65004,12 +64879,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - return hash; } } @@ -65017,18 +64886,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition() { - OpenApiCollection = openApiCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65045,7 +64909,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65065,7 +64929,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65073,16 +64937,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -65090,18 +64944,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition() { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65118,7 +64967,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65138,7 +64987,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65146,16 +64995,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -65163,22 +65002,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition() { - Code = code; - Message = message; - Path = path; - Locations = locations; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65195,7 +65025,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65215,7 +65045,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65223,25 +65053,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -65249,16 +65060,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) + public ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65275,7 +65083,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65295,7 +65103,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65303,7 +65111,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -65311,22 +65118,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { - Message = message; - Code = code; - Path = path; - Locations = locations; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65343,7 +65141,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65363,7 +65161,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65371,25 +65169,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -65397,27 +65176,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65434,7 +65199,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65454,7 +65219,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65462,11 +65227,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -65474,27 +65234,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65511,7 +65257,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65531,7 +65277,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65539,15 +65285,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -65555,27 +65292,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65592,7 +65315,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65612,7 +65335,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65620,11 +65343,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -65632,25 +65350,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65667,7 +65373,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65687,7 +65393,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65695,18 +65401,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -65714,23 +65408,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Location = location; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65747,7 +65431,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65767,7 +65451,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65775,9 +65459,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -65785,23 +65466,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Location = location; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -65818,7 +65489,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65838,7 +65509,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -65846,9 +65517,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -65856,25 +65524,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 + public partial class ListOpenApiCollectionCommandQuery_Node_Group : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Group { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListOpenApiCollectionCommandQuery_Node_Group() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -65891,7 +65547,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65911,7 +65567,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -65919,18 +65575,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -65938,23 +65582,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -65971,7 +65605,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -65991,7 +65625,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -65999,9 +65633,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -66009,25 +65640,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -66044,7 +65663,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66064,7 +65683,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -66072,14 +65691,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -66087,23 +65698,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -66120,7 +65721,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66140,7 +65741,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -66148,9 +65749,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -66158,25 +65756,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 + public partial class ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -66193,7 +65779,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66213,7 +65799,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -66221,18 +65807,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -66240,27 +65814,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollection() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -66277,7 +65837,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66297,7 +65857,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -66305,11 +65865,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -66317,27 +65872,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -66354,7 +65895,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66374,7 +65915,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -66382,11 +65923,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -66394,27 +65930,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -66431,7 +65953,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66451,7 +65973,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -66459,15 +65981,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -66475,25 +65988,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -66510,7 +66011,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66530,7 +66031,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -66538,18 +66039,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -66557,27 +66046,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 + public partial class ListOpenApiCollectionCommandQuery_Node_Organization : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Organization { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_Organization() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -66594,7 +66069,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66614,7 +66089,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -66622,11 +66097,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -66634,27 +66104,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class ListOpenApiCollectionCommandQuery_Node_OrganizationMember : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OrganizationMember { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_OrganizationMember() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -66671,7 +66127,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66691,7 +66147,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -66699,11 +66155,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -66711,23 +66162,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -66744,7 +66185,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66764,7 +66205,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -66772,9 +66213,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -66782,23 +66220,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class ListOpenApiCollectionCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_SchemaDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListOpenApiCollectionCommandQuery_Node_SchemaDeployment() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -66815,7 +66243,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66835,7 +66263,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -66843,9 +66271,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -66853,27 +66278,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged + public partial class ListOpenApiCollectionCommandQuery_Node_Stage : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Stage { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ListOpenApiCollectionCommandQuery_Node_Stage() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -66890,7 +66301,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66910,7 +66321,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -66918,15 +66329,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -66934,23 +66336,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded + public partial class ListOpenApiCollectionCommandQuery_Node_User : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_User { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListOpenApiCollectionCommandQuery_Node_User() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -66967,7 +66359,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -66987,7 +66379,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -66995,9 +66387,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -67005,23 +66394,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved + public partial class ListOpenApiCollectionCommandQuery_Node_Workspace : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_Workspace { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ListOpenApiCollectionCommandQuery_Node_Workspace() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -67038,7 +66417,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67058,7 +66437,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -67066,9 +66445,6 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -67076,25 +66452,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 + public partial class ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_WorkspaceDocument { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -67111,7 +66475,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67131,7 +66495,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -67139,46 +66503,34 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo pageInfo) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection? other) { if (ReferenceEquals(null, other)) { @@ -67195,7 +66547,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67215,7 +66567,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection)obj); } public override global::System.Int32 GetHashCode() @@ -67223,39 +66575,43 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node node) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge? other) { if (ReferenceEquals(null, other)) { @@ -67272,7 +66628,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67292,7 +66648,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -67300,35 +66656,46 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -67345,7 +66712,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67365,7 +66732,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -67373,9 +66740,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -67383,23 +66759,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection : global::System.IEquatable, IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -67416,7 +66787,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67436,7 +66807,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -67444,37 +66815,396 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQueryResult + { + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Api : IListOpenApiCollectionCommandQuery_Node + { + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? OpenApiCollections { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_ApiDocument : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_ApiKey : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Client : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_ClientChangeLog : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_ClientDeployment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_ClientVersion : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Environment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Group : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollection : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollection : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Organization : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OrganizationMember : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaChangeLog : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_SchemaDeployment : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Stage : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_User : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_Workspace : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_WorkspaceDocument : IListOpenApiCollectionCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollectionEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges : IListOpenApiCollectionCommandQuery_OpenApiCollectionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionDetailPrompt_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node : IListOpenApiCollectionCommandQuery_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection : IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class PublishOpenApiCollectionCommandMutationResult : global::System.IEquatable, IPublishOpenApiCollectionCommandMutationResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public PublishOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection publishOpenApiCollection) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + PublishOpenApiCollection = publishOpenApiCollection; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection PublishOpenApiCollection { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -67491,7 +67221,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (PublishOpenApiCollection.Equals(other.PublishOpenApiCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67511,7 +67241,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((PublishOpenApiCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -67519,15 +67249,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * PublishOpenApiCollection.GetHashCode(); return hash; } } @@ -67535,25 +67257,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -67570,7 +67285,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67590,7 +67305,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -67598,16 +67313,17 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (Id != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); } - if (New != null) + if (Errors != null) { - hash ^= 397 * New.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -67617,25 +67333,23 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; + Name = name; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -67652,7 +67366,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67672,7 +67386,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -67681,17 +67395,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -67699,23 +67404,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + OpenApiCollectionId = openApiCollectionId; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String OpenApiCollectionId { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -67732,7 +67432,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67752,7 +67452,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -67760,9 +67460,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -67770,23 +67469,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -67803,7 +67500,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67823,7 +67520,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -67832,8 +67529,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -67841,18 +67537,20 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError(global::System.String tag, global::System.String message, global::System.String openApiCollectionId) { - Id = id; - Name = name; + Tag = tag; + Message = message; + OpenApiCollectionId = openApiCollectionId; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.String Tag { get; } + public global::System.String Message { get; } + public global::System.String OpenApiCollectionId { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -67869,7 +67567,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Tag.Equals(other.Tag)) && Message.Equals(other.Message) && OpenApiCollectionId.Equals(other.OpenApiCollectionId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67889,7 +67587,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -67897,8 +67595,9 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * OpenApiCollectionId.GetHashCode(); return hash; } } @@ -67906,18 +67605,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) { - Errors = errors; - Name = name; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -67934,7 +67631,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -67954,7 +67651,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -67962,31 +67659,89 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection PublishOpenApiCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection + { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IOpenApiCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionVersionNotFoundError : IError + { + public global::System.String Tag { get; } + public global::System.String OpenApiCollectionId { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IOpenApiCollectionVersionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError : IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class PublishOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscriptionResult { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public PublishOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate onOpenApiCollectionVersionPublishingUpdate) { - Errors = errors; - Name = name; + OnOpenApiCollectionVersionPublishingUpdate = onOpenApiCollectionVersionPublishingUpdate; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate OnOpenApiCollectionVersionPublishingUpdate { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscriptionResult? other) { if (ReferenceEquals(null, other)) { @@ -68003,7 +67758,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (OnOpenApiCollectionVersionPublishingUpdate.Equals(other.OnOpenApiCollectionVersionPublishingUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68023,7 +67778,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((PublishOpenApiCollectionCommandSubscriptionResult)obj); } public override global::System.Int32 GetHashCode() @@ -68031,12 +67786,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * OnOpenApiCollectionVersionPublishingUpdate.GetHashCode(); return hash; } } @@ -68044,18 +67794,23 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { - Column = column; - Line = line; + this.__typename = __typename; + State = state; + Errors = errors; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed? other) { if (ReferenceEquals(null, other)) { @@ -68072,7 +67827,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68092,7 +67847,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed)obj); } public override global::System.Int32 GetHashCode() @@ -68100,8 +67855,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -68109,18 +67869,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Column = column; - Line = line; + this.__typename = __typename; + State = state; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess? other) { if (ReferenceEquals(null, other)) { @@ -68137,7 +67900,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68157,7 +67920,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -68165,8 +67928,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -68174,23 +67937,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + State = state; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -68207,7 +67968,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68227,7 +67988,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -68236,12 +67997,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -68249,25 +68005,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + State = state; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved? other) { if (ReferenceEquals(null, other)) { @@ -68284,7 +68036,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68304,7 +68056,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved)obj); } public override global::System.Int32 GetHashCode() @@ -68313,17 +68065,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -68331,25 +68073,26 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) { this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + Queued = queued; + QueuePosition = queuePosition; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued? other) { if (ReferenceEquals(null, other)) { @@ -68366,7 +68109,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68386,7 +68129,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued)obj); } public override global::System.Int32 GetHashCode() @@ -68395,9 +68138,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Queued.GetHashCode(); + hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -68405,18 +68147,24 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) { - Severity = severity; - DeprecationReason = deprecationReason; + this.__typename = __typename; + Ready = ready; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady? other) { if (ReferenceEquals(null, other)) { @@ -68433,7 +68181,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68453,7 +68201,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady)obj); } public override global::System.Int32 GetHashCode() @@ -68461,12 +68209,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -68474,25 +68218,23 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) { - Severity = severity; - Old = old; - New = @new; this.__typename = __typename; + State = state; + Deployment = deployment; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval? other) { if (ReferenceEquals(null, other)) { @@ -68509,7 +68251,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68529,7 +68271,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval)obj); } public override global::System.Int32 GetHashCode() @@ -68537,18 +68279,13 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + if (Deployment != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Deployment.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -68556,18 +68293,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { - Severity = severity; - DeprecationReason = deprecationReason; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -68584,7 +68324,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68604,7 +68344,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -68612,12 +68352,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -68625,25 +68361,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -68660,7 +68387,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68680,7 +68407,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -68688,18 +68415,11 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -68707,25 +68427,21 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { - Severity = severity; - OldType = oldType; - NewType = newType; this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -68742,7 +68458,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68762,7 +68478,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -68770,10 +68486,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -68781,27 +68495,79 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError() + { + } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError? 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((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError)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 PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError + { + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -68818,7 +68584,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68838,7 +68604,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -68846,11 +68612,8 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -68858,27 +68621,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Severity = severity; - Coordinate = coordinate; - Name = name; - this.__typename = __typename; - Changes = changes; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -68895,7 +68647,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68915,7 +68667,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -68923,13 +68675,9 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -68939,27 +68687,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -68976,7 +68713,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -68996,7 +68733,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -69004,11 +68741,11 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -69016,18 +68753,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Severity = severity; - DeprecationReason = deprecationReason; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -69044,7 +68779,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69064,7 +68799,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -69072,10 +68807,9 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -69085,25 +68819,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -69120,7 +68845,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69140,7 +68865,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -69148,18 +68873,77 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } - if (New != null) + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment + { + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + { + Errors = errors; + } + + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + } + + 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((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + foreach (var Errors_elm in Errors) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -69167,25 +68951,18 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; + OpenApiCollection = openApiCollection; + Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -69202,7 +68979,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69222,7 +68999,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -69230,10 +69007,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -69241,22 +69024,20 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Code = code; Message = message; - Path = path; - Locations = locations; + Client = client; + Queries = queries; } - public global::System.String? Code { get; } public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -69273,7 +69054,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69293,7 +69074,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -69301,23 +69082,15 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - hash ^= 397 * Message.GetHashCode(); - if (Path != null) + if (Client != null) { - hash ^= 397 * Path.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); } - if (Locations != null) + foreach (var Queries_elm in Queries) { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } + hash ^= 397 * Queries_elm.GetHashCode(); } return hash; @@ -69327,16 +69100,20 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { Message = message; + Client = client; + Queries = queries; } public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -69353,7 +69130,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (Message.Equals(other.Message)); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69373,7 +69150,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -69382,6 +69159,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -69389,23 +69176,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -69422,7 +69202,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69442,7 +69222,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -69450,11 +69230,9 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -69464,25 +69242,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -69499,7 +69268,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69519,7 +69288,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -69527,16 +69296,78 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } - if (New != null) + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError + { + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + { + Message = message; + Changes = changes; + } + + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } + + 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((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -69546,25 +69377,23 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + Message = message; + Errors = errors; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -69581,7 +69410,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69601,7 +69430,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -69610,9 +69439,12 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -69620,18 +69452,16 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 { - public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - Column = column; - Line = line; + Collections = collections; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -69648,7 +69478,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -69668,7 +69498,7 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub return false; } - return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -69676,985 +69506,304 @@ public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPub unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscriptionResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate OnOpenApiCollectionVersionPublishingUpdate { get; } - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + { + Collections = collections; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate - { - public global::System.String __typename { get; } - } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionVersionPublishFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishFailed - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionVersionPublishSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishSuccess - { - } + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOperationInProgress - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskApproved - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsQueued - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsReady - { - } + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IWaitForApproval - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IConcurrentOperationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 { - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + { + Message = message; + Client = client; + Queries = queries; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IOpenApiCollectionValidationError - { - } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IProcessingTimeoutError - { - } + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IUnexpectedProcessingError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - } + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 { - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + { + Collections = collections; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError - { - } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1 - { - } + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError - { - } + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_2 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError - { - } + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_3 - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4 + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 { - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + { + Collections = collections; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError - { - } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError - { - } + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError - { - } + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationResult : global::System.IEquatable, IUploadOpenApiCollectionCommandMutationResult - { - public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection uploadOpenApiCollection) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - UploadOpenApiCollection = uploadOpenApiCollection; + Message = message; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection UploadOpenApiCollection { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) { if (ReferenceEquals(null, other)) { @@ -70671,7 +69820,7 @@ public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co return false; } - return (UploadOpenApiCollection.Equals(other.UploadOpenApiCollection)); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -70691,7 +69840,7 @@ public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co return false; } - return Equals((UploadOpenApiCollectionCommandMutationResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -70699,7 +69848,12 @@ public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co unchecked { int hash = 5; - hash ^= 397 * UploadOpenApiCollection.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -70707,18 +69861,21 @@ public UploadOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.Co // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? openApiCollectionVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { - OpenApiCollectionVersion = openApiCollectionVersion; - Errors = errors; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? OpenApiCollectionVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -70735,7 +69892,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpen return false; } - return (((OpenApiCollectionVersion is null && other.OpenApiCollectionVersion is null) || OpenApiCollectionVersion != null && OpenApiCollectionVersion.Equals(other.OpenApiCollectionVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -70755,7 +69912,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpen return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -70763,19 +69920,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpen unchecked { int hash = 5; - if (OpenApiCollectionVersion != null) - { - hash ^= 397 * OpenApiCollectionVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -70783,16 +69929,27 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpen // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(global::System.String id) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { - Id = id; + this.__typename = __typename; + Message = message; + Column = column; + Position = position; + Line = line; } - public global::System.String Id { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -70809,7 +69966,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCol return false; } - return (Id.Equals(other.Id)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -70829,7 +69986,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCol return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -70837,7 +69994,11 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCol unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -70845,18 +70006,23 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCol // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - OpenApiCollectionId = openApiCollectionId; + this.__typename = __typename; Message = message; + Errors = errors; } - public global::System.String OpenApiCollectionId { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -70873,7 +70039,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Ope return false; } - return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -70893,7 +70059,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Ope return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -70901,8 +70067,13 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Ope unchecked { int hash = 5; - hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -70910,21 +70081,18 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Ope // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Message = message; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -70941,7 +70109,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Con return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -70961,7 +70129,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Con return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -70969,8 +70137,8 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Con unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -70978,21 +70146,20 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Con // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { - this.__typename = __typename; - Message = message; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -71009,7 +70176,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Una return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71029,7 +70196,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Una return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -71037,8 +70204,13 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Una unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -71046,21 +70218,18 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Una // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Message = message; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -71077,7 +70246,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Dup return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71097,7 +70266,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Dup return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -71105,8 +70274,12 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Dup unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -71114,16 +70287,18 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Dup // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError : global::System.IEquatable, IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client { - public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) { - Message = message; + Id = id; + Name = name; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -71140,7 +70315,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Inv return false; } - return (Message.Equals(other.Message)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71160,7 +70335,7 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Inv return false; } - return Equals((UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -71168,101 +70343,31 @@ public UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_Inv unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection UploadOpenApiCollection { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? OpenApiCollectionVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion - { - public global::System.String Id { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IOpenApiCollectionNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IConcurrentOperationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IDuplicatedTagError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInvalidOpenApiCollectionArchiveError - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError : IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors, IInvalidOpenApiCollectionArchiveError, IError - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutationResult : global::System.IEquatable, IValidateOpenApiCollectionCommandMutationResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed { - public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection validateOpenApiCollection) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - ValidateOpenApiCollection = validateOpenApiCollection; + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection ValidateOpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -71279,7 +70384,7 @@ public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro. return false; } - return (ValidateOpenApiCollection.Equals(other.ValidateOpenApiCollection)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71299,7 +70404,7 @@ public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro. return false; } - return Equals((ValidateOpenApiCollectionCommandMutationResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -71307,7 +70412,18 @@ public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro. unchecked { int hash = 5; - hash ^= 397 * ValidateOpenApiCollection.GetHashCode(); + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -71315,18 +70431,18 @@ public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection { - public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - Id = id; - Errors = errors; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -71343,7 +70459,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Valida return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71363,7 +70479,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Valida return false; } - return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -71371,17 +70487,14 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Valida unchecked { int hash = 5; - if (Id != null) + if (McpFeatureCollection != null) { - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * McpFeatureCollection.GetHashCode(); } - if (Errors != null) + foreach (var Entities_elm in Entities) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -71391,23 +70504,18 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Valida // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection { - public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Message = message; - Name = name; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -71424,7 +70532,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71444,7 +70552,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -71452,9 +70560,16 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -71462,18 +70577,25 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange { - public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - OpenApiCollectionId = openApiCollectionId; - Message = message; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String OpenApiCollectionId { get; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71490,7 +70612,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71510,7 +70632,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71518,8 +70640,14 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors unchecked { int hash = 5; - hash ^= 397 * OpenApiCollectionId.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -71527,21 +70655,25 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange { - public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71558,7 +70690,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71578,7 +70710,7 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors return false; } - return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71587,69 +70719,117 @@ public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutationResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection ValidateOpenApiCollection { get; } - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection - { - } + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IStageNotFoundError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IOpenApiCollectionNotFoundError - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IUnauthorizedOperation - { + 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((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscriptionResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange { - public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate onOpenApiCollectionVersionValidationUpdate) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - OnOpenApiCollectionVersionValidationUpdate = onOpenApiCollectionVersionValidationUpdate; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate OnOpenApiCollectionVersionValidationUpdate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscriptionResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71666,7 +70846,7 @@ public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Ni return false; } - return (OnOpenApiCollectionVersionValidationUpdate.Equals(other.OnOpenApiCollectionVersionValidationUpdate)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71686,7 +70866,7 @@ public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Ni return false; } - return Equals((ValidateOpenApiCollectionCommandSubscriptionResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71694,7 +70874,14 @@ public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Ni unchecked { int hash = 5; - hash ^= 397 * OnOpenApiCollectionVersionValidationUpdate.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -71702,23 +70889,25 @@ public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Ni // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - State = state; - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71735,7 +70924,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71755,7 +70944,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71764,10 +70953,11 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -71777,21 +70967,25 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - State = state; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71808,7 +71002,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71828,7 +71022,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71837,7 +71031,13 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -71845,21 +71045,23 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; - State = state; + Severity = severity; + Coordinate = coordinate; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -71876,7 +71078,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71896,7 +71098,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71905,7 +71107,8 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -71913,21 +71116,21 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { this.__typename = __typename; - State = state; + Severity = severity; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -71944,7 +71147,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -71964,7 +71167,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -71973,7 +71176,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -71981,16 +71184,23 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Message = message; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -72007,7 +71217,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72027,7 +71237,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -72035,7 +71245,9 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -72043,16 +71255,25 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -72069,7 +71290,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72089,7 +71310,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -72097,9 +71318,12 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -72109,21 +71333,18 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - this.__typename = __typename; Message = message; + Code = code; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -72140,7 +71361,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72160,7 +71381,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -72168,8 +71389,12 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -72177,13 +71402,22 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { + Code = code; + Message = message; + Path = path; + Locations = locations; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError? other) + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -72200,7 +71434,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return true; + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72220,7 +71454,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -72228,6 +71462,25 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -72235,21 +71488,16 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -72266,7 +71514,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72286,7 +71534,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -72294,7 +71542,6 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -72303,18 +71550,22 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - OpenApiCollection = openApiCollection; - Entities = entities; + Message = message; + Code = code; + Path = path; + Locations = locations; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -72331,7 +71582,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72351,7 +71602,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -72359,14 +71610,23 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - if (OpenApiCollection != null) + hash ^= 397 * Message.GetHashCode(); + if (Code != null) { - hash ^= 397 * OpenApiCollection.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); } - foreach (var Entities_elm in Entities) + if (Path != null) { - hash ^= 397 * Entities_elm.GetHashCode(); + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } } return hash; @@ -72376,9 +71636,9 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { Id = id; Name = name; @@ -72387,7 +71647,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa public global::System.String Id { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -72424,7 +71684,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -72441,20 +71701,18 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { Errors = errors; - HttpMethod = httpMethod; - Route = route; + Name = name; } public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -72471,7 +71729,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72491,7 +71749,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -72504,8 +71762,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa hash ^= 397 * Errors_elm.GetHashCode(); } - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -72513,9 +71770,9 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { Errors = errors; Name = name; @@ -72524,7 +71781,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa public global::System.Collections.Generic.IReadOnlyList Errors { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -72561,7 +71818,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -72582,22 +71839,27 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - Code = code; - Message = message; - Path = path; - Locations = locations; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -72614,7 +71876,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72634,7 +71896,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -72642,25 +71904,11 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -72668,16 +71916,27 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { - Message = message; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -72694,7 +71953,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72714,7 +71973,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -72722,7 +71981,15 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -72730,18 +71997,27 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved { - public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - Column = column; - Line = line; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -72758,7 +72034,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -72778,7 +72054,7 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa return false; } - return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -72786,203 +72062,37 @@ public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionVa unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscriptionResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate OnOpenApiCollectionVersionValidationUpdate { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionVersionValidationFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationFailed - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionVersionValidationSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationSuccess - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOperationInProgress - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IValidationInProgress - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOpenApiCollectionValidationArchiveError - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IOpenApiCollectionValidationArchiveError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IOpenApiCollectionValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IProcessingTimeoutError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IUnexpectedProcessingError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationResult : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutationResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged { - public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken createPersonalAccessToken) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - CreatePersonalAccessToken = createPersonalAccessToken; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken CreatePersonalAccessToken { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -72999,7 +72109,7 @@ public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. return false; } - return (CreatePersonalAccessToken.Equals(other.CreatePersonalAccessToken)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73019,7 +72129,7 @@ public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. return false; } - return Equals((CreatePersonalAccessTokenCommandMutationResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -73027,7 +72137,18 @@ public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. unchecked { int hash = 5; - hash ^= 397 * CreatePersonalAccessToken.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -73035,18 +72156,23 @@ public CreatePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded { - public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? result, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - Result = result; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Location = location; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? Result { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -73063,7 +72189,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Create return false; } - return (((Result is null && other.Result is null) || Result != null && Result.Equals(other.Result))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73083,7 +72209,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Create return false; } - return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -73091,19 +72217,9 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Create unchecked { int hash = 5; - if (Result != null) - { - hash ^= 397 * Result.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -73111,18 +72227,23 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Create // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved { - public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token token, global::System.String secret) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - Token = token; - Secret = secret; + this.__typename = __typename; + Severity = severity; + Location = location; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token Token { get; } - public global::System.String Secret { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -73139,7 +72260,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result return false; } - return (Token.Equals(other.Token)) && Secret.Equals(other.Secret); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73159,7 +72280,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result return false; } - return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -73167,8 +72288,9 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result unchecked { int hash = 5; - hash ^= 397 * Token.GetHashCode(); - hash ^= 397 * Secret.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -73176,16 +72298,25 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 { - public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -73202,7 +72333,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73222,7 +72353,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors return false; } - return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -73230,7 +72361,18 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -73238,21 +72380,23 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded { - public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -73269,7 +72413,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73289,7 +72433,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors return false; } - return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -73298,7 +72442,8 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -73306,22 +72451,25 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken : global::System.IEquatable, ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged { - public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Id = id; - Description = description; - CreatedAt = createdAt; - ExpiresAt = expiresAt; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Id { get; } - public global::System.String Description { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.DateTimeOffset ExpiresAt { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -73338,7 +72486,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result return false; } - return (Id.Equals(other.Id)) && Description.Equals(other.Description) && CreatedAt.Equals(other.CreatedAt) && ExpiresAt.Equals(other.ExpiresAt); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73358,7 +72506,7 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result return false; } - return Equals((CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -73366,108 +72514,38 @@ public CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Description.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * ExpiresAt.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken CreatePersonalAccessToken { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? Result { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token Token { get; } - public global::System.String Secret { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors, IError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPersonalAccessTokenDetailPrompt_PersonalAccessToken - { - public global::System.String Id { get; } - public global::System.String Description { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.DateTimeOffset ExpiresAt { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token : ICreatePersonalAccessTokenCommandMutation_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken : ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryResult : global::System.IEquatable, IListPersonalAccessTokenCommandQueryResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved { - public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? me) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Me = me; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? Me { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQueryResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -73484,7 +72562,7 @@ public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.Comma return false; } - return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73504,7 +72582,7 @@ public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.Comma return false; } - return Equals((ListPersonalAccessTokenCommandQueryResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -73512,11 +72590,9 @@ public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.Comma unchecked { int hash = 5; - if (Me != null) - { - hash ^= 397 * Me.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -73524,16 +72600,25 @@ public ListPersonalAccessTokenCommandQueryResult(global::ChilliCream.Nitro.Comma // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQuery_Me_Viewer : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_Viewer + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 { - public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? personalAccessTokens) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - PersonalAccessTokens = personalAccessTokens; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? PersonalAccessTokens { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_Viewer? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -73550,7 +72635,7 @@ public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.C return false; } - return (((PersonalAccessTokens is null && other.PersonalAccessTokens is null) || PersonalAccessTokens != null && PersonalAccessTokens.Equals(other.PersonalAccessTokens))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73570,7 +72655,7 @@ public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.C return false; } - return Equals((ListPersonalAccessTokenCommandQuery_Me_Viewer)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -73578,9 +72663,16 @@ public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.C unchecked { int hash = 5; - if (PersonalAccessTokens != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * PersonalAccessTokens.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -73589,28 +72681,28 @@ public ListPersonalAccessTokenCommandQuery_Me_Viewer(global::ChilliCream.Nitro.C } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange { - public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo pageInfo) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -73627,7 +72719,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAcces return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73647,7 +72739,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAcces return false; } - return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -73655,43 +72747,39 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAcces unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange { - public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node node) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -73708,7 +72796,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Persona return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73728,7 +72816,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Persona return false; } - return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -73736,46 +72824,39 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Persona unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged { - public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -73792,7 +72873,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_Page return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73812,7 +72893,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_Page return false; } - return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -73820,16 +72901,13 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_Page unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * StartCursor.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -73839,22 +72917,25 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_Page // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken : global::System.IEquatable, IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 { - public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset expiresAt, global::System.DateTimeOffset createdAt) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Id = id; - Description = description; - ExpiresAt = expiresAt; - CreatedAt = createdAt; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Id { get; } - public global::System.String Description { get; } - public global::System.DateTimeOffset ExpiresAt { get; } - public global::System.DateTimeOffset CreatedAt { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -73871,7 +72952,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_Pe return false; } - return (Id.Equals(other.Id)) && Description.Equals(other.Description) && ExpiresAt.Equals(other.ExpiresAt) && CreatedAt.Equals(other.CreatedAt); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -73891,7 +72972,7 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_Pe return false; } - return Equals((ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -73899,144 +72980,46 @@ public ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_Pe unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Description.GetHashCode(); - hash ^= 397 * ExpiresAt.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? Me { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me - { - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? PersonalAccessTokens { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_Viewer : IListPersonalAccessTokenCommandQuery_Me - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommand_PersonalAccessTokenEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges : IListPersonalAccessTokenCommand_PersonalAccessTokenEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node : IListPersonalAccessTokenCommand_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken : IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationResult : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutationResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 { - public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken revokePersonalAccessToken) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - RevokePersonalAccessToken = revokePersonalAccessToken; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken RevokePersonalAccessToken { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutationResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -74053,7 +73036,7 @@ public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. return false; } - return (RevokePersonalAccessToken.Equals(other.RevokePersonalAccessToken)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74073,7 +73056,7 @@ public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. return false; } - return Equals((RevokePersonalAccessTokenCommandMutationResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -74081,7 +73064,11 @@ public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. unchecked { int hash = 5; - hash ^= 397 * RevokePersonalAccessToken.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -74089,23 +73076,32 @@ public RevokePersonalAccessTokenCommandMutationResult(global::ChilliCream.Nitro. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 { - public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? personalAccessToken, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - PersonalAccessToken = personalAccessToken; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? PersonalAccessToken { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } if (ReferenceEquals(this, other)) { @@ -74117,7 +73113,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Revoke return false; } - return (((PersonalAccessToken is null && other.PersonalAccessToken is null) || PersonalAccessToken != null && PersonalAccessToken.Equals(other.PersonalAccessToken))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74137,7 +73133,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Revoke return false; } - return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -74145,19 +73141,11 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Revoke unchecked { int hash = 5; - if (PersonalAccessToken != null) - { - hash ^= 397 * PersonalAccessToken.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -74165,22 +73153,23 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Revoke // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded { - public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken(global::System.String id, global::System.String description, global::System.DateTimeOffset createdAt, global::System.DateTimeOffset expiresAt) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Id = id; - Description = description; - CreatedAt = createdAt; - ExpiresAt = expiresAt; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.String Id { get; } - public global::System.String Description { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.DateTimeOffset ExpiresAt { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -74197,7 +73186,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Person return false; } - return (Id.Equals(other.Id)) && Description.Equals(other.Description) && CreatedAt.Equals(other.CreatedAt) && ExpiresAt.Equals(other.ExpiresAt); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74217,7 +73206,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Person return false; } - return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -74225,10 +73214,9 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Person unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Description.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * ExpiresAt.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -74236,16 +73224,23 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Person // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved { - public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation(global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Message = message; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -74262,7 +73257,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74282,7 +73277,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors return false; } - return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -74290,7 +73285,9 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -74298,21 +73295,27 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError : global::System.IEquatable, IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged { - public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -74329,7 +73332,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74349,7 +73352,7 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors return false; } - return Equals((RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -74358,91 +73361,38 @@ public RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutationResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken RevokePersonalAccessToken { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken - { - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? PersonalAccessToken { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommand_PersonalAccessToken : IPersonalAccessTokenDetailPrompt_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommand_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors, IError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded { - } + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPersonalAccessTokenNotFoundError : 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 IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError : IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors, IPersonalAccessTokenNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionResult : global::System.IEquatable, IPublishSchemaVersionResult - { - public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema publishSchema) - { - PublishSchema = publishSchema; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema PublishSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersionResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -74459,7 +73409,7 @@ public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return (PublishSchema.Equals(other.PublishSchema)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74479,7 +73429,7 @@ public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return Equals((PublishSchemaVersionResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -74487,7 +73437,9 @@ public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I unchecked { int hash = 5; - hash ^= 397 * PublishSchema.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -74495,18 +73447,23 @@ public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersion_PublishSchema_PublishSchemaPayload : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_PublishSchemaPayload + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved { - public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Id = id; - Errors = errors; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_PublishSchemaPayload? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -74523,7 +73480,7 @@ public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.St return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74543,7 +73500,7 @@ public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.St return false; } - return Equals((PublishSchemaVersion_PublishSchema_PublishSchemaPayload)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -74551,19 +73508,9 @@ public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.St unchecked { int hash = 5; - if (Id != null) - { - hash ^= 397 * Id.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -74571,23 +73518,25 @@ public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_StageNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 { - public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - Message = message; - Name = name; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -74604,7 +73553,7 @@ public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::Syst return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74624,7 +73573,7 @@ public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::Syst return false; } - return Equals((PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -74633,8 +73582,17 @@ public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::Syst { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -74642,23 +73600,27 @@ public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::Syst // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 { - public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; - Message = message; - ApiId = apiId; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -74675,7 +73637,7 @@ public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74695,7 +73657,7 @@ public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System return false; } - return Equals((PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -74704,8 +73666,10 @@ public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -74713,20 +73677,27 @@ public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 { - public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Message = message; - ApiId = apiId; - Tag = tag; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } - public global::System.String Tag { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -74743,7 +73714,7 @@ public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::Sys return false; } - return (Message.Equals(other.Message)) && ApiId.Equals(other.ApiId) && Tag.Equals(other.Tag); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74763,7 +73734,7 @@ public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::Sys return false; } - return Equals((PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -74771,9 +73742,11 @@ public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::Sys unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -74781,21 +73754,23 @@ public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::Sys // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; - Message = message; + Severity = severity; + InterfaceName = interfaceName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -74812,7 +73787,7 @@ public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74832,7 +73807,7 @@ public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::S return false; } - return Equals((PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -74841,83 +73816,32 @@ public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::S { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersionResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema PublishSchema { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_PublishSchemaPayload : IPublishSchemaVersion_PublishSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_Errors_StageNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaNotFoundError : IError - { - public global::System.String ApiId { get; } - public global::System.String Tag { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, ISchemaNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation : IPublishSchemaVersion_PublishSchema_Errors, IUnauthorizedOperation - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdatedResult : global::System.IEquatable, IOnSchemaVersionPublishUpdatedResult + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate onSchemaVersionPublishingUpdate) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - OnSchemaVersionPublishingUpdate = onSchemaVersionPublishingUpdate; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate OnSchemaVersionPublishingUpdate { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdatedResult? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -74934,7 +73858,7 @@ public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine return false; } - return (OnSchemaVersionPublishingUpdate.Equals(other.OnSchemaVersionPublishingUpdate)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -74954,7 +73878,7 @@ public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine return false; } - return Equals((OnSchemaVersionPublishUpdatedResult)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -74962,7 +73886,9 @@ public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - hash ^= 397 * OnSchemaVersionPublishingUpdate.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -74970,21 +73896,27 @@ public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - State = state; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -75001,7 +73933,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationIn return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75021,7 +73953,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationIn return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -75030,7 +73962,14 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationIn { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -75038,21 +73977,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationIn // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - State = state; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -75069,7 +74012,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75089,7 +74032,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -75098,7 +74041,17 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -75106,26 +74059,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - Queued = queued; - QueuePosition = queuePosition; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -75142,7 +74094,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75162,7 +74114,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -75171,8 +74123,17 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Queued.GetHashCode(); - hash ^= 397 * QueuePosition.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -75180,24 +74141,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; - Ready = ready; + Severity = severity; + TypeName = typeName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -75214,7 +74174,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75234,7 +74194,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -75243,7 +74203,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Ready.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -75251,23 +74212,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingT // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; - State = state; - Errors = errors; + Severity = severity; + TypeName = typeName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -75284,7 +74245,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75304,7 +74265,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -75313,12 +74274,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -75326,21 +74283,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - this.__typename = __typename; - State = state; + Column = column; + Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -75357,7 +74311,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75377,7 +74331,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -75385,8 +74339,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -75394,23 +74348,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { - this.__typename = __typename; - State = state; - Deployment = deployment; + Column = column; + Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -75427,7 +74376,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForAppr return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75447,7 +74396,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForAppr return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -75455,13 +74404,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForAppr unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - if (Deployment != null) - { - hash ^= 397 * Deployment.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -75469,21 +74413,22 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForAppr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; + Code = code; Message = message; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String? Code { get; } public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -75500,7 +74445,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Conc return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75520,7 +74465,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Conc return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -75528,8 +74473,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Conc unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -75537,23 +74499,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Conc // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; Message = message; - Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -75570,7 +74525,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Inva return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75590,7 +74545,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Inva return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -75598,13 +74553,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Inva unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -75612,16 +74561,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Inva // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -75638,7 +74594,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpF return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75658,7 +74614,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpF return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -75666,9 +74622,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpF unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -75678,16 +74636,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpF // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -75704,7 +74671,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Open return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75724,7 +74691,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Open return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -75732,9 +74699,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Open unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -75744,21 +74718,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Open // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; - Message = message; + Severity = severity; + OldType = oldType; + NewType = newType; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -75775,7 +74753,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Oper return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75795,7 +74773,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Oper return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -75804,7 +74782,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Oper { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -75812,20 +74792,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Oper // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Message = message; - Client = client; - Queries = queries; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -75842,7 +74820,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Pers return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75862,7 +74840,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Pers return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -75870,15 +74848,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Pers unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -75888,21 +74861,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Pers // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -75919,7 +74896,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Proc return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75939,7 +74916,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Proc return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -75947,8 +74924,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Proc unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -75956,13 +74943,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Proc // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError() + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -75979,7 +74971,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Read return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -75999,7 +74991,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Read return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -76007,6 +74999,12 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Read unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -76014,21 +75012,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Read // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; this.__typename = __typename; - Changes = changes; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -76045,7 +75047,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche return false; } - return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76065,7 +75067,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -76073,12 +75075,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -76086,27 +75094,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { + Severity = severity; + OldType = oldType; + NewType = newType; this.__typename = __typename; - Message = message; - Column = column; - Position = position; - Line = line; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -76123,7 +75129,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76143,7 +75149,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -76151,11 +75157,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -76163,21 +75168,27 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Sche // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; this.__typename = __typename; - Message = message; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -76194,7 +75205,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Unex return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76214,7 +75225,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Unex return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -76222,8 +75233,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Unex unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -76231,16 +75245,27 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Unex // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Name = name; + this.__typename = __typename; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -76257,7 +75282,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76277,7 +75302,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -76285,9 +75310,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -76297,16 +75326,27 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -76323,7 +75363,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76343,7 +75383,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -76351,11 +75391,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -76363,16 +75403,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Errors = errors; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -76389,7 +75431,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76409,7 +75451,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -76417,9 +75459,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -76429,16 +75472,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - Errors = errors; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -76455,7 +75507,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76475,7 +75527,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -76483,11 +75535,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -76495,16 +75554,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Errors = errors; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -76521,7 +75589,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76541,7 +75609,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -76549,11 +75617,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -76561,18 +75628,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Message = message; - Code = code; + Column = column; + Line = line; } - public global::System.String Message { get; } - public global::System.String? Code { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -76589,7 +75656,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Erro return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76609,7 +75676,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Erro return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -76617,12 +75684,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Erro unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -76630,18 +75693,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Erro // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -76658,7 +75726,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76678,7 +75746,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -76686,14 +75754,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Entities_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -76703,18 +75768,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - OpenApiCollection = openApiCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -76731,7 +75803,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76751,7 +75823,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -76759,14 +75831,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - if (OpenApiCollection != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * OpenApiCollection.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - foreach (var Entities_elm in Entities) + if (New != null) { - hash ^= 397 * Entities_elm.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } return hash; @@ -76776,18 +75850,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client + public partial class PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) + public PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { - Id = id; - Name = name; + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } - public global::System.String Id { get; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -76804,7 +75885,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Clie return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -76824,7 +75905,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Clie return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client)obj); + return Equals((PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -76832,579 +75913,987 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Clie unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed + public partial interface IPublishOpenApiCollectionCommandSubscriptionResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) - { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; - } - - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate OnOpenApiCollectionVersionPublishingUpdate { get; } + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionVersionPublishFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishFailed + { + } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionVersionPublishSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOpenApiCollectionVersionPublishSuccess + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IOperationInProgress + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskApproved + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsQueued + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IProcessingTaskIsReady + { + } - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate, IWaitForApproval + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IConcurrentOperationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IOpenApiCollectionValidationError + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IProcessingTimeoutError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors, IUnexpectedProcessingError + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_ClientDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_SchemaDeployment : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1 + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_2 + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_3 + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4 + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_OpenApiCollection + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client_Client : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Client + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Errors + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_PersistedQueryError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Queries_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2 : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes_TypeChanged : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_Changes, ITypeChanged + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange + public partial class ValidateOpenApiCollectionCommandMutationResult : global::System.IEquatable, IValidateOpenApiCollectionCommandMutationResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection validateOpenApiCollection) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + ValidateOpenApiCollection = validateOpenApiCollection; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection ValidateOpenApiCollection { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -77421,7 +76910,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (ValidateOpenApiCollection.Equals(other.ValidateOpenApiCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77441,7 +76930,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((ValidateOpenApiCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -77449,9 +76938,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * ValidateOpenApiCollection.GetHashCode(); return hash; } } @@ -77459,21 +76946,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange + public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; + Id = id; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -77490,7 +76974,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77510,7 +76994,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -77518,8 +77002,19 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); + if (Id != null) + { + hash ^= 397 * Id.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -77527,23 +77022,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange + public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; + Name = name; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -77560,7 +77055,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77580,7 +77075,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -77589,8 +77084,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -77598,25 +77093,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange + public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError(global::System.String openApiCollectionId, global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + OpenApiCollectionId = openApiCollectionId; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String OpenApiCollectionId { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -77633,7 +77121,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77653,7 +77141,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange)obj); + return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -77661,14 +77149,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -77676,20 +77158,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError + public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; - Client = client; - Queries = queries; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -77706,7 +77189,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77726,7 +77209,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); + return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -77734,17 +77217,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - return hash; } } @@ -77752,20 +77226,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 + public partial class ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError(global::System.String message) { Message = message; - Client = client; - Queries = queries; } public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -77782,7 +77252,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77802,7 +77272,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); + return Equals((ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -77811,35 +77281,74 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection ValidateOpenApiCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection + { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IOpenApiCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError : IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError + public partial class ValidateOpenApiCollectionCommandSubscriptionResult : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscriptionResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateOpenApiCollectionCommandSubscriptionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate onOpenApiCollectionVersionValidationUpdate) { - Message = message; - Changes = changes; + OnOpenApiCollectionVersionValidationUpdate = onOpenApiCollectionVersionValidationUpdate; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate OnOpenApiCollectionVersionValidationUpdate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscriptionResult? other) { if (ReferenceEquals(null, other)) { @@ -77856,7 +77365,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (OnOpenApiCollectionVersionValidationUpdate.Equals(other.OnOpenApiCollectionVersionValidationUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77876,7 +77385,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscriptionResult)obj); } public override global::System.Int32 GetHashCode() @@ -77884,12 +77393,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * OnOpenApiCollectionVersionValidationUpdate.GetHashCode(); return hash; } } @@ -77897,12 +77401,12 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Message = message; + State = state; Errors = errors; } @@ -77910,10 +77414,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -77930,7 +77434,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -77950,7 +77454,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -77959,7 +77463,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * State.GetHashCode(); foreach (var Errors_elm in Errors) { hash ^= 397 * Errors_elm.GetHashCode(); @@ -77972,16 +77476,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Collections = collections; + this.__typename = __typename; + State = state; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess? other) { if (ReferenceEquals(null, other)) { @@ -77998,7 +77507,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78018,7 +77527,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -78026,11 +77535,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -78038,16 +77544,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Collections = collections; + this.__typename = __typename; + State = state; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -78064,7 +77575,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78084,7 +77595,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -78092,11 +77603,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -78104,16 +77612,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { - Collections = collections; + this.__typename = __typename; + State = state; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -78130,7 +77643,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78150,7 +77663,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -78158,11 +77671,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -78170,16 +77680,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError(global::System.String message) { - Collections = collections; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError? other) { if (ReferenceEquals(null, other)) { @@ -78196,7 +77706,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78216,7 +77726,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError)obj); } public override global::System.Int32 GetHashCode() @@ -78224,11 +77734,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -78236,20 +77742,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Message = message; - Client = client; - Queries = queries; + Collections = collections; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -78266,7 +77768,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78286,7 +77788,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -78294,15 +77796,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -78312,18 +77808,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; - Changes = changes; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -78340,7 +77839,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78360,7 +77859,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -78368,12 +77867,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -78381,21 +77876,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError() { - this.__typename = __typename; - Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -78412,7 +77899,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78432,7 +77919,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -78440,8 +77927,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -78449,15 +77934,12 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - Column = column; - Position = position; - Line = line; } /// @@ -78465,11 +77947,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -78486,7 +77965,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78506,7 +77985,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -78516,9 +77995,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -78526,23 +78002,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Message = message; - Errors = errors; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -78559,7 +78030,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78579,7 +78050,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -78587,11 +78058,14 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) + if (OpenApiCollection != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -78601,16 +78075,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - Collections = collections; + Id = id; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -78627,7 +78103,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78647,7 +78123,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -78655,11 +78131,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -78667,16 +78140,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { - Collections = collections; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -78693,7 +78170,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78713,7 +78190,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -78721,11 +78198,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -78733,18 +78212,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Id = id; + Errors = errors; Name = name; } - public global::System.String Id { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -78761,7 +78240,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78781,7 +78260,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -78789,7 +78268,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + hash ^= 397 * Name.GetHashCode(); return hash; } @@ -78798,18 +78281,22 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - Errors = errors; - Name = name; + Code = code; + Message = message; + Path = path; + Locations = locations; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -78826,7 +78313,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78846,7 +78333,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -78854,12 +78341,25 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (Code != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -78867,18 +78367,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - Errors = errors; - Name = name; + Message = message; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -78895,7 +78393,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78915,7 +78413,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -78923,12 +78421,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -78936,18 +78429,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Id = id; - Name = name; + Column = column; + Line = line; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -78964,7 +78457,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -78984,7 +78477,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -78992,29 +78485,203 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscriptionResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate OnOpenApiCollectionVersionValidationUpdate { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionVersionValidationFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationFailed + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionVersionValidationSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOpenApiCollectionVersionValidationSuccess + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IOperationInProgress + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate, IValidationInProgress + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationArchiveError + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IOpenApiCollectionValidationArchiveError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IOpenApiCollectionValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IProcessingTimeoutError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors, IUnexpectedProcessingError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class CreateOpenApiCollectionCommandMutationResult : global::System.IEquatable, ICreateOpenApiCollectionCommandMutationResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public CreateOpenApiCollectionCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection createOpenApiCollection) { - Errors = errors; - HttpMethod = httpMethod; - Route = route; + CreateOpenApiCollection = createOpenApiCollection; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection CreateOpenApiCollection { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -79031,7 +78698,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return (CreateOpenApiCollection.Equals(other.CreateOpenApiCollection)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79051,7 +78718,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((CreateOpenApiCollectionCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -79059,13 +78726,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); + hash ^= 397 * CreateOpenApiCollection.GetHashCode(); return hash; } } @@ -79073,18 +78734,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) { + OpenApiCollection = openApiCollection; Errors = errors; - Name = name; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload? other) { if (ReferenceEquals(null, other)) { @@ -79101,7 +78762,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79121,7 +78782,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -79129,12 +78790,19 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + if (OpenApiCollection != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -79142,22 +78810,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError + public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) { - Message = message; - Code = code; - Path = path; - Locations = locations; + Name = name; + Id = id; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -79174,7 +78838,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Name.Equals(other.Name)) && Id.Equals(other.Id); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79194,7 +78858,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -79202,25 +78866,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -79228,27 +78875,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Quer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded + public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError(global::System.String message, global::System.String __typename, global::System.String apiId) { + Message = message; this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + ApiId = apiId; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -79265,7 +78908,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79285,7 +78928,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -79293,11 +78936,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -79305,27 +78946,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged + public partial class CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -79342,7 +78977,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79362,7 +78997,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -79370,43 +79005,82 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection CreateOpenApiCollection { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation : ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors, IUnauthorizedOperation + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved + public partial class DeleteOpenApiCollectionByIdCommandMutationResult : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutationResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public DeleteOpenApiCollectionByIdCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById deleteOpenApiCollectionById) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + DeleteOpenApiCollectionById = deleteOpenApiCollectionById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById DeleteOpenApiCollectionById { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -79423,7 +79097,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (DeleteOpenApiCollectionById.Equals(other.DeleteOpenApiCollectionById)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79443,7 +79117,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((DeleteOpenApiCollectionByIdCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -79451,11 +79125,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * DeleteOpenApiCollectionById.GetHashCode(); return hash; } } @@ -79463,25 +79133,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged + public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + OpenApiCollection = openApiCollection; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload? other) { if (ReferenceEquals(null, other)) { @@ -79498,7 +79161,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79518,7 +79181,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload)obj); } public override global::System.Int32 GetHashCode() @@ -79526,16 +79189,17 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (OpenApiCollection != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * OpenApiCollection.GetHashCode(); } - if (New != null) + if (Errors != null) { - hash ^= 397 * New.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -79545,23 +79209,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded + public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(global::System.String name, global::System.String id) { - this.__typename = __typename; - Severity = severity; - Location = location; + Name = name; + Id = id; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Name { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -79578,7 +79237,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (Name.Equals(other.Name)) && Id.Equals(other.Id); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79598,7 +79257,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -79606,9 +79265,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -79616,23 +79274,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError(global::System.String message, global::System.String openApiCollectionId) { - this.__typename = __typename; - Severity = severity; - Location = location; + Message = message; + OpenApiCollectionId = openApiCollectionId; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Message { get; } + public global::System.String OpenApiCollectionId { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -79649,7 +79302,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (Message.Equals(other.Message)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79669,7 +79322,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -79677,9 +79330,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * OpenApiCollectionId.GetHashCode(); return hash; } } @@ -79687,25 +79339,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 + public partial class DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation : global::System.IEquatable, IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation(global::System.String message, global::System.String __typename) { + Message = message; this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } + public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -79722,7 +79370,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79742,7 +79390,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -79750,42 +79398,85 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById DeleteOpenApiCollectionById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById + { + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors, IOpenApiCollectionNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation : IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors, IUnauthorizedOperation + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded + public partial class ShowWorkspaceCommandQueryResult : global::System.IEquatable, IShowWorkspaceCommandQueryResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? node) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Node = node; } /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -79802,7 +79493,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79822,7 +79513,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((ShowWorkspaceCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -79830,9 +79521,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Node != null) + { + hash ^= 397 * Node.GetHashCode(); + } + return hash; } } @@ -79840,25 +79533,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged + public partial class ShowWorkspaceCommandQuery_Node_Api : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Api { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_Api() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -79875,7 +79556,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79895,7 +79576,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -79903,14 +79584,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -79918,23 +79591,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved + public partial class ShowWorkspaceCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ApiDocument { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ShowWorkspaceCommandQuery_Node_ApiDocument() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -79951,7 +79614,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -79971,7 +79634,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((ShowWorkspaceCommandQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -79979,9 +79642,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -79989,25 +79649,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 + public partial class ShowWorkspaceCommandQuery_Node_ApiKey : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ApiKey { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowWorkspaceCommandQuery_Node_ApiKey() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -80024,7 +79672,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80044,7 +79692,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ShowWorkspaceCommandQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -80052,18 +79700,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -80071,27 +79707,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange + public partial class ShowWorkspaceCommandQuery_Node_Client : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Client { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_Client() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -80108,7 +79730,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80128,7 +79750,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -80136,11 +79758,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -80148,27 +79765,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange + public partial class ShowWorkspaceCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientChangeLog { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_ClientChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -80185,7 +79788,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80205,7 +79808,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -80213,11 +79816,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -80225,27 +79823,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged + public partial class ShowWorkspaceCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_ClientDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -80262,7 +79846,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80282,7 +79866,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((ShowWorkspaceCommandQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -80290,15 +79874,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -80306,25 +79881,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 + public partial class ShowWorkspaceCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientVersion { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowWorkspaceCommandQuery_Node_ClientVersion() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -80341,7 +79904,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80361,7 +79924,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((ShowWorkspaceCommandQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -80369,18 +79932,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -80388,27 +79939,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 + public partial class ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -80425,7 +79962,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80445,7 +79982,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -80453,11 +79990,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -80465,27 +79997,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class ShowWorkspaceCommandQuery_Node_Environment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Environment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -80502,7 +80020,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80522,7 +80040,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -80530,11 +80048,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -80542,23 +80055,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -80575,7 +80078,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80595,7 +80098,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -80603,9 +80106,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -80613,23 +80113,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -80646,7 +80136,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80666,7 +80156,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -80674,9 +80164,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -80684,27 +80171,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged + public partial class ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -80721,7 +80194,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80741,7 +80214,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -80749,15 +80222,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -80765,23 +80229,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded + public partial class ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -80798,7 +80252,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80818,7 +80272,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -80826,9 +80280,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -80836,23 +80287,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved + public partial class ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -80869,7 +80310,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80889,7 +80330,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -80897,9 +80338,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -80907,25 +80345,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -80942,7 +80368,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -80962,7 +80388,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -80970,18 +80396,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -80989,27 +80403,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81026,7 +80426,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81046,7 +80446,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81054,11 +80454,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -81066,27 +80461,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81103,7 +80484,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81123,7 +80504,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81131,11 +80512,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -81143,23 +80519,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81176,7 +80542,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81196,7 +80562,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81204,9 +80570,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -81214,23 +80577,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81247,7 +80600,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81267,7 +80620,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81275,9 +80628,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -81285,27 +80635,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81322,7 +80658,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81342,7 +80678,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81350,15 +80686,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -81366,25 +80693,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81401,7 +80716,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81421,7 +80736,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81429,18 +80744,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -81448,25 +80751,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 + public partial class ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81483,7 +80774,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81503,7 +80794,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81511,18 +80802,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -81530,23 +80809,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded + public partial class ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81563,7 +80832,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81583,7 +80852,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81591,9 +80860,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -81601,23 +80867,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved + public partial class ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -81634,7 +80890,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81654,7 +80910,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -81662,9 +80918,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -81672,18 +80925,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client + public partial class ShowWorkspaceCommandQuery_Node_Group : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Group { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) + public ShowWorkspaceCommandQuery_Node_Group() { - Id = id; - Name = name; } - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Group? other) { if (ReferenceEquals(null, other)) { @@ -81700,7 +80948,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81720,7 +80968,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Group)obj); } public override global::System.Int32 GetHashCode() @@ -81728,8 +80976,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -81737,22 +80983,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed + public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -81769,7 +81006,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81789,7 +81026,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -81797,18 +81034,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - return hash; } } @@ -81816,25 +81041,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -81851,7 +81064,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81871,7 +81084,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -81879,14 +81092,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -81894,25 +81099,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -81929,7 +81122,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -81949,7 +81142,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -81957,14 +81150,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -81972,25 +81157,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -82007,7 +81180,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82027,7 +81200,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -82035,14 +81208,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -82050,25 +81215,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_OpenApiCollection() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -82085,7 +81238,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82105,7 +81258,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -82113,14 +81266,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -82128,25 +81273,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -82163,7 +81296,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82183,7 +81316,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -82191,14 +81324,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -82206,25 +81331,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -82241,7 +81354,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82261,7 +81374,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -82269,14 +81382,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -82284,23 +81389,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange + public partial class ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion? other) { if (ReferenceEquals(null, other)) { @@ -82317,7 +81412,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82337,7 +81432,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion)obj); } public override global::System.Int32 GetHashCode() @@ -82345,9 +81440,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -82355,21 +81447,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_Organization : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Organization { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public ShowWorkspaceCommandQuery_Node_Organization() { - this.__typename = __typename; - Severity = severity; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Organization? other) { if (ReferenceEquals(null, other)) { @@ -82386,7 +81470,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82406,7 +81490,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Organization)obj); } public override global::System.Int32 GetHashCode() @@ -82414,8 +81498,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -82423,23 +81505,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange + public partial class ShowWorkspaceCommandQuery_Node_OrganizationMember : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_OrganizationMember { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public ShowWorkspaceCommandQuery_Node_OrganizationMember() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OrganizationMember? other) { if (ReferenceEquals(null, other)) { @@ -82456,7 +81528,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82476,7 +81548,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_OrganizationMember)obj); } public override global::System.Int32 GetHashCode() @@ -82484,9 +81556,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -82494,25 +81563,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange + public partial class ShowWorkspaceCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_SchemaChangeLog { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_SchemaChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -82529,7 +81586,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82549,7 +81606,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); + return Equals((ShowWorkspaceCommandQuery_Node_SchemaChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -82557,14 +81614,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -82572,18 +81621,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError + public partial class ShowWorkspaceCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_SchemaDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public ShowWorkspaceCommandQuery_Node_SchemaDeployment() { - Message = message; - Code = code; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -82600,7 +81644,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82620,7 +81664,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); + return Equals((ShowWorkspaceCommandQuery_Node_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -82628,12 +81672,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - return hash; } } @@ -82641,18 +81679,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection + public partial class ShowWorkspaceCommandQuery_Node_Stage : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Stage { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ShowWorkspaceCommandQuery_Node_Stage() { - OpenApiCollection = openApiCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Stage? other) { if (ReferenceEquals(null, other)) { @@ -82669,7 +81702,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82689,7 +81722,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -82697,16 +81730,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -82714,18 +81737,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class ShowWorkspaceCommandQuery_Node_User : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_User { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public ShowWorkspaceCommandQuery_Node_User() { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_User? other) { if (ReferenceEquals(null, other)) { @@ -82742,7 +81760,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82762,7 +81780,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((ShowWorkspaceCommandQuery_Node_User)obj); } public override global::System.Int32 GetHashCode() @@ -82770,16 +81788,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - return hash; } } @@ -82787,22 +81795,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class ShowWorkspaceCommandQuery_Node_Workspace : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Workspace { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) { - Code = code; - Message = message; - Path = path; - Locations = locations; + Id = id; + Name = name; + Personal = personal; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Boolean Personal { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -82819,7 +81825,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82839,7 +81845,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((ShowWorkspaceCommandQuery_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -82847,25 +81853,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Personal.GetHashCode(); return hash; } } @@ -82873,16 +81863,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class ShowWorkspaceCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_WorkspaceDocument { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() { - Message = message; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_WorkspaceDocument? other) { if (ReferenceEquals(null, other)) { @@ -82899,7 +81886,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (Message.Equals(other.Message)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -82919,7 +81906,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((ShowWorkspaceCommandQuery_Node_WorkspaceDocument)obj); } public override global::System.Int32 GetHashCode() @@ -82927,244 +81914,297 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial interface IShowWorkspaceCommandQueryResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) - { - Code = code; - Message = message; - Path = path; - Locations = locations; - } - - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? Node { get; } + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Api : IShowWorkspaceCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_ApiDocument : IShowWorkspaceCommandQuery_Node + { + } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_ApiKey : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Client : IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_ClientChangeLog : IShowWorkspaceCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_ClientDeployment : IShowWorkspaceCommandQuery_Node + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_ClientVersion : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics : IShowWorkspaceCommandQuery_Node + { + } - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Environment : IShowWorkspaceCommandQuery_Node + { + } - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog : IShowWorkspaceCommandQuery_Node + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment : IShowWorkspaceCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowWorkspaceCommandQuery_Node { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) - { - Message = message; - } + } - public global::System.String Message { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition : IShowWorkspaceCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition : IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition : IShowWorkspaceCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowWorkspaceCommandQuery_Node + { + } - return (Message.Equals(other.Message)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowWorkspaceCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowWorkspaceCommandQuery_Node + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition : IShowWorkspaceCommandQuery_Node + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition : IShowWorkspaceCommandQuery_Node { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) - { - Column = column; - Line = line; - } + } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition : IShowWorkspaceCommandQuery_Node + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Group : IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollection : IShowWorkspaceCommandQuery_Node + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog : IShowWorkspaceCommandQuery_Node + { + } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion : IShowWorkspaceCommandQuery_Node + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollection : IShowWorkspaceCommandQuery_Node + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : IShowWorkspaceCommandQuery_Node + { + } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : IShowWorkspaceCommandQuery_Node + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Organization : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_OrganizationMember : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_SchemaChangeLog : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_SchemaDeployment : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Stage : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_User : IShowWorkspaceCommandQuery_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IWorkspaceDetailPrompt_Workspace + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Boolean Personal { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_Workspace : IShowWorkspaceCommandQuery_Node, IWorkspaceDetailPrompt_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowWorkspaceCommandQuery_Node_WorkspaceDocument : IShowWorkspaceCommandQuery_Node + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange + public partial class CreateWorkspaceCommandMutationResult : global::System.IEquatable, ICreateWorkspaceCommandMutationResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace createWorkspace) { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + CreateWorkspace = createWorkspace; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace CreateWorkspace { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutationResult? other) { if (ReferenceEquals(null, other)) { @@ -83181,7 +82221,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (CreateWorkspace.Equals(other.CreateWorkspace)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83201,7 +82241,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((CreateWorkspaceCommandMutationResult)obj); } public override global::System.Int32 GetHashCode() @@ -83209,13 +82249,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * CreateWorkspace.GetHashCode(); return hash; } } @@ -83223,25 +82257,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged + public partial class CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? workspace, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Workspace = workspace; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? Workspace { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload? other) { if (ReferenceEquals(null, other)) { @@ -83258,7 +82285,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83278,7 +82305,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload)obj); } public override global::System.Int32 GetHashCode() @@ -83286,16 +82313,17 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (Workspace != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Workspace.GetHashCode(); } - if (New != null) + if (Errors != null) { - hash ^= 397 * New.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -83305,25 +82333,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged + public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + Id = id; + Name = name; + Personal = personal; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Boolean Personal { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -83340,7 +82363,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83360,7 +82383,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged)obj); + return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -83368,10 +82391,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Personal.GetHashCode(); return hash; } } @@ -83379,18 +82401,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 + public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation(global::System.String message) { - Severity = severity; - DeprecationReason = deprecationReason; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) + public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -83407,7 +82427,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83427,7 +82447,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); + return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -83435,12 +82455,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -83448,25 +82463,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 + public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(global::System.String message) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError? other) { if (ReferenceEquals(null, other)) { @@ -83483,7 +82489,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83503,7 +82509,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); + return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -83511,37 +82517,77 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutationResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace CreateWorkspace { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace + { + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? Workspace { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload : ICreateWorkspaceCommandMutation_CreateWorkspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace : IWorkspaceDetailPrompt_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace : ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation : ICreateWorkspaceCommandMutation_CreateWorkspace_Errors + { + public global::System.String Message { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError : ICreateWorkspaceCommandMutation_CreateWorkspace_Errors + { + public global::System.String Message { get; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 + public partial class ListWorkspaceCommandQueryResult : global::System.IEquatable, IListWorkspaceCommandQueryResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? me) { - Severity = severity; - DeprecationReason = deprecationReason; + Me = me; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? Me { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -83558,7 +82604,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83578,7 +82624,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); + return Equals((ListWorkspaceCommandQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -83586,10 +82632,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + if (Me != null) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Me.GetHashCode(); } return hash; @@ -83599,25 +82644,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 + public partial class ListWorkspaceCommandQuery_Me_Viewer : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Viewer { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? workspaces) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Workspaces = workspaces; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? Workspaces { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Viewer? other) { if (ReferenceEquals(null, other)) { @@ -83634,7 +82670,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (((Workspaces is null && other.Workspaces is null) || Workspaces != null && Workspaces.Equals(other.Workspaces))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83654,7 +82690,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); + return Equals((ListWorkspaceCommandQuery_Me_Viewer)obj); } public override global::System.Int32 GetHashCode() @@ -83662,44 +82698,39 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (Workspaces != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Workspaces.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 + public partial class ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo pageInfo) { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; + Edges = edges; + PageInfo = pageInfo; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection? other) { if (ReferenceEquals(null, other)) { @@ -83716,7 +82747,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83736,7 +82767,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1)obj); + return Equals((ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection)obj); } public override global::System.Int32 GetHashCode() @@ -83744,38 +82775,43 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded + public partial class ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node node) { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; + Cursor = cursor; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge? other) { if (ReferenceEquals(null, other)) { @@ -83792,7 +82828,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83812,7 +82848,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded)obj); + return Equals((ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge)obj); } public override global::System.Int32 GetHashCode() @@ -83820,39 +82856,46 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged + public partial class ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - Severity = severity; - Coordinate = coordinate; - Name = name; - this.__typename = __typename; - Changes = changes; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -83869,7 +82912,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83889,7 +82932,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged)obj); + return Equals((ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -83897,13 +82940,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -83913,27 +82959,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved + public partial class ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) { - Severity = severity; - Coordinate = coordinate; + Id = id; Name = name; - TypeName = typeName; - this.__typename = __typename; + Personal = personal; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Boolean Personal { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -83950,7 +82989,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -83970,7 +83009,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); + return Equals((ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -83978,30 +83017,143 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Personal.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQueryResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? Me { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me + { + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? Workspaces { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Viewer : IListWorkspaceCommandQuery_Me + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection : IListWorkspaceCommandQuery_Me_Workspaces + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommand_WorkspaceEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges : IListWorkspaceCommand_WorkspaceEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge : IListWorkspaceCommandQuery_Me_Workspaces_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo : IListWorkspaceCommandQuery_Me_Workspaces_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommand_Workspace : IWorkspaceDetailPrompt_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node : IListWorkspaceCommand_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace : IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? me) { - Severity = severity; - DeprecationReason = deprecationReason; + Me = me; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? Me { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult? other) { if (ReferenceEquals(null, other)) { @@ -84018,7 +83170,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84038,7 +83190,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -84046,10 +83198,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + if (Me != null) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Me.GetHashCode(); } return hash; @@ -84059,25 +83210,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? workspaces) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + Workspaces = workspaces; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? Workspaces { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer? other) { if (ReferenceEquals(null, other)) { @@ -84094,7 +83236,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (((Workspaces is null && other.Workspaces is null) || Workspaces != null && Workspaces.Equals(other.Workspaces))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84114,7 +83256,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer)obj); } public override global::System.Int32 GetHashCode() @@ -84122,44 +83264,39 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (Workspaces != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Workspaces.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo pageInfo) { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; + Edges = edges; + PageInfo = pageInfo; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection? other) { if (ReferenceEquals(null, other)) { @@ -84176,7 +83313,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84196,7 +83333,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection)obj); } public override global::System.Int32 GetHashCode() @@ -84204,38 +83341,43 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node node) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge? other) { if (ReferenceEquals(null, other)) { @@ -84252,7 +83394,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84272,7 +83414,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge)obj); } public override global::System.Int32 GetHashCode() @@ -84280,39 +83422,46 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -84329,7 +83478,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84349,7 +83498,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -84357,13 +83506,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -84373,27 +83525,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Id = id; Name = name; - TypeName = typeName; + Personal = personal; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.Boolean Personal { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -84410,7 +83555,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84430,7 +83575,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -84438,54 +83583,154 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Personal.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) - { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; - } + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? Me { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me + { + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? Workspaces { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces + { /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo PageInfo { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces + { + } - if (other.GetType() != GetType()) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_Workspace + { + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Boolean Personal { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node : ISetDefaultWorkspaceCommand_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishSchemaVersionResult : global::System.IEquatable, IPublishSchemaVersionResult + { + public PublishSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema publishSchema) + { + PublishSchema = publishSchema; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema PublishSchema { get; } + + public virtual global::System.Boolean Equals(PublishSchemaVersionResult? other) + { + if (ReferenceEquals(null, other)) { return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (PublishSchema.Equals(other.PublishSchema)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84505,7 +83750,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((PublishSchemaVersionResult)obj); } public override global::System.Int32 GetHashCode() @@ -84513,18 +83758,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * PublishSchema.GetHashCode(); return hash; } } @@ -84532,23 +83766,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded + public partial class PublishSchemaVersion_PublishSchema_PublishSchemaPayload : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_PublishSchemaPayload { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public PublishSchemaVersion_PublishSchema_PublishSchemaPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Location = location; + Id = id; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_PublishSchemaPayload? other) { if (ReferenceEquals(null, other)) { @@ -84565,7 +83794,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84585,7 +83814,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((PublishSchemaVersion_PublishSchema_PublishSchemaPayload)obj); } public override global::System.Int32 GetHashCode() @@ -84593,9 +83822,19 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + if (Id != null) + { + hash ^= 397 * Id.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -84603,23 +83842,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_StageNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; - Severity = severity; - Location = location; + Message = message; + Name = name; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -84636,7 +83875,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84656,7 +83895,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -84665,8 +83904,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -84674,25 +83913,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 + public partial class PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; + ApiId = apiId; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -84709,7 +83946,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84729,7 +83966,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -84738,17 +83975,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -84756,23 +83984,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded + public partial class PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; + ApiId = apiId; + Tag = tag; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } + public global::System.String Tag { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -84789,7 +84014,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (Message.Equals(other.Message)) && ApiId.Equals(other.ApiId) && Tag.Equals(other.Tag); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84809,7 +84034,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -84817,9 +84042,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } @@ -84827,25 +84052,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged + public partial class PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -84862,7 +84083,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84882,7 +84103,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -84891,13 +84112,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -84905,23 +84120,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved + public partial class PublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IPublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public PublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(PublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -84938,7 +84146,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -84958,7 +84166,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((PublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -84966,35 +84174,89 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersionResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema PublishSchema { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema + { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_PublishSchemaPayload : IPublishSchemaVersion_PublishSchema + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors_StageNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaNotFoundError : IError + { + public global::System.String ApiId { get; } + public global::System.String Tag { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError : IPublishSchemaVersion_PublishSchema_Errors, ISchemaNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation : IPublishSchemaVersion_PublishSchema_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError : IPublishSchemaVersion_PublishSchema_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 + public partial class OnSchemaVersionPublishUpdatedResult : global::System.IEquatable, IOnSchemaVersionPublishUpdatedResult { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate onSchemaVersionPublishingUpdate) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + OnSchemaVersionPublishingUpdate = onSchemaVersionPublishingUpdate; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate OnSchemaVersionPublishingUpdate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdatedResult? other) { if (ReferenceEquals(null, other)) { @@ -85011,7 +84273,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (OnSchemaVersionPublishingUpdate.Equals(other.OnSchemaVersionPublishingUpdate)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85031,7 +84293,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnSchemaVersionPublishUpdatedResult)obj); } public override global::System.Int32 GetHashCode() @@ -85039,18 +84301,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * OnSchemaVersionPublishingUpdate.GetHashCode(); return hash; } } @@ -85058,27 +84309,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + State = state; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -85095,7 +84340,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85115,7 +84360,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -85124,10 +84369,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -85135,27 +84377,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + State = state; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved? other) { if (ReferenceEquals(null, other)) { @@ -85172,7 +84408,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85192,7 +84428,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved)obj); } public override global::System.Int32 GetHashCode() @@ -85201,10 +84437,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -85212,27 +84445,26 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued(global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Queued = queued; + QueuePosition = queuePosition; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued? other) { if (ReferenceEquals(null, other)) { @@ -85249,7 +84481,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85269,7 +84501,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued)obj); } public override global::System.Int32 GetHashCode() @@ -85278,14 +84510,8 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Queued.GetHashCode(); + hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -85293,25 +84519,24 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady(global::System.String __typename, global::System.String ready) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Ready = ready; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady? other) { if (ReferenceEquals(null, other)) { @@ -85328,7 +84553,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Ready.Equals(other.Ready); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85348,7 +84573,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady)obj); } public override global::System.Int32 GetHashCode() @@ -85357,17 +84582,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -85375,27 +84590,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + State = state; + Errors = errors; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed? other) { if (ReferenceEquals(null, other)) { @@ -85412,7 +84623,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85432,7 +84643,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed)obj); } public override global::System.Int32 GetHashCode() @@ -85441,10 +84652,12 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -85452,27 +84665,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + State = state; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess? other) { if (ReferenceEquals(null, other)) { @@ -85489,7 +84696,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && State.Equals(other.State); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85509,7 +84716,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -85518,10 +84725,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * State.GetHashCode(); return hash; } } @@ -85529,23 +84733,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) { this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + State = state; + Deployment = deployment; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval? other) { if (ReferenceEquals(null, other)) { @@ -85562,7 +84766,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85582,7 +84786,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval)obj); } public override global::System.Int32 GetHashCode() @@ -85591,8 +84795,12 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + if (Deployment != null) + { + hash ^= 397 * Deployment.GetHashCode(); + } + return hash; } } @@ -85600,23 +84808,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -85633,7 +84839,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85653,7 +84859,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -85662,8 +84868,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -85671,27 +84876,23 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Message = message; + Errors = errors; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -85708,7 +84909,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85728,7 +84929,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -85737,12 +84938,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -85752,23 +84951,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -85785,7 +84977,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85805,7 +84997,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -85813,9 +85005,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -85823,23 +85017,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -85856,7 +85043,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85876,7 +85063,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -85884,9 +85071,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -85894,25 +85083,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -85929,7 +85114,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -85949,7 +85134,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -85958,17 +85143,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -85976,27 +85151,20 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Message = message; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -86013,7 +85181,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86033,7 +85201,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -86041,11 +85209,17 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -86053,27 +85227,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -86090,7 +85258,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86110,7 +85278,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -86119,10 +85287,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -86130,23 +85295,13 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -86163,7 +85318,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86183,7 +85338,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -86191,9 +85346,6 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -86201,23 +85353,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -86234,7 +85384,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86254,7 +85404,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -86263,8 +85413,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -86272,27 +85425,27 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Message = message; + Column = column; + Position = position; + Line = line; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -86309,7 +85462,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86329,7 +85482,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -86338,14 +85491,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -86353,25 +85502,21 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -86388,7 +85533,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86408,7 +85553,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -86417,17 +85562,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -86435,25 +85570,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -86470,7 +85596,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86490,7 +85616,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -86498,16 +85624,9 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -86517,23 +85636,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -86550,7 +85662,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86570,7 +85682,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -86578,9 +85690,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -86588,23 +85702,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -86621,7 +85728,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86641,7 +85748,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -86649,9 +85756,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -86659,18 +85768,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Column = column; - Line = line; + Errors = errors; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -86687,7 +85794,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86707,7 +85814,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -86715,8 +85822,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -86724,18 +85834,16 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Column = column; - Line = line; + Errors = errors; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -86752,7 +85860,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86772,7 +85880,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -86780,8 +85888,11 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -86789,23 +85900,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Coll // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + Message = message; + Code = code; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -86822,7 +85928,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86842,7 +85948,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -86850,11 +85956,10 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + hash ^= 397 * Message.GetHashCode(); + if (Code != null) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); } return hash; @@ -86864,25 +85969,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -86899,7 +85997,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -86919,7 +86017,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -86927,16 +86025,14 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (McpFeatureCollection != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * McpFeatureCollection.GetHashCode(); } - if (New != null) + foreach (var Entities_elm in Entities) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -86946,25 +86042,18 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection { - public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -86981,7 +86070,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -87001,7 +86090,7 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan return false; } - return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -87009,1407 +86098,652 @@ public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Chan unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdatedResult + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client { - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate OnSchemaVersionPublishingUpdate { get; } - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client(global::System.String id, global::System.String name) + { + Id = id; + Name = name; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate - { - public global::System.String __typename { get; } - } + public global::System.String Id { get; } + public global::System.String Name { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IOperationInProgress - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskApproved - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsQueued - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsReady - { - } + return (Id.Equals(other.Id)) && Name.Equals(other.Name); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionPublishFailed - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishFailed + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + { + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; + } + + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + } + + 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionPublishSuccess + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } + /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishSuccess - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IWaitForApproval - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IConcurrentOperationError - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IInvalidGraphQLSchemaError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IOpenApiCollectionValidationError - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IOperationsAreNotAllowedError - { - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IPersistedQueryValidationError - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IProcessingTimeoutError - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange { - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionChangeViolationError - { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, ISchemaVersionChangeViolationError - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, ISchemaVersionSyntaxError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IUnexpectedProcessingError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange { - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes : ISchemaChangeLogEntry - { - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IDirectiveModifiedChange - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IEnumModifiedChange - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IInputObjectModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange { - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IInterfaceModifiedChange - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IObjectModifiedChange - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IScalarModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ITypeSystemMemberAddedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ISchemaChange - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ITypeSystemMemberRemovedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IUnionModifiedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError - { - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1 - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange { - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_2 - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_3 - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError - { - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange { - } + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDirectiveLocationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IInputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_1 - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchemaResult : global::System.IEquatable, IUploadSchemaResult - { - public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema uploadSchema) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - UploadSchema = uploadSchema; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema UploadSchema { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(UploadSchemaResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -88426,7 +86760,7 @@ public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSc return false; } - return (UploadSchema.Equals(other.UploadSchema)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88446,7 +86780,7 @@ public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSc return false; } - return Equals((UploadSchemaResult)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -88454,7 +86788,9 @@ public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSc unchecked { int hash = 5; - hash ^= 397 * UploadSchema.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -88462,18 +86798,21 @@ public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSc // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_UploadSchemaPayload : global::System.IEquatable, IUploadSchema_UploadSchema_UploadSchemaPayload + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange { - public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? schemaVersion, global::System.Collections.Generic.IReadOnlyList? errors) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { - SchemaVersion = schemaVersion; - Errors = errors; + this.__typename = __typename; + Severity = severity; } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? SchemaVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_UploadSchemaPayload? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -88490,7 +86829,7 @@ public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.C return false; } - return (((SchemaVersion is null && other.SchemaVersion is null) || SchemaVersion != null && SchemaVersion.Equals(other.SchemaVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88510,7 +86849,7 @@ public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.C return false; } - return Equals((UploadSchema_UploadSchema_UploadSchemaPayload)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -88518,19 +86857,8 @@ public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.C unchecked { int hash = 5; - if (SchemaVersion != null) - { - hash ^= 397 * SchemaVersion.GetHashCode(); - } - - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -88538,16 +86866,23 @@ public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_SchemaVersion_SchemaVersion : global::System.IEquatable, IUploadSchema_UploadSchema_SchemaVersion_SchemaVersion + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange { - public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.String id) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Id = id; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Id { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_SchemaVersion_SchemaVersion? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -88564,7 +86899,7 @@ public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.Stri return false; } - return (Id.Equals(other.Id)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88584,7 +86919,7 @@ public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.Stri return false; } - return Equals((UploadSchema_UploadSchema_SchemaVersion_SchemaVersion)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -88592,7 +86927,9 @@ public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -88600,23 +86937,25 @@ public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.Stri // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_Errors_ApiNotFoundError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_ApiNotFoundError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange { - public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; - ApiId = apiId; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -88633,7 +86972,7 @@ public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String _ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88653,7 +86992,7 @@ public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String _ return false; } - return Equals((UploadSchema_UploadSchema_Errors_ApiNotFoundError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -88662,8 +87001,13 @@ public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String _ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -88671,21 +87015,20 @@ public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String _ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_ConcurrentOperationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError { - public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; Message = message; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -88702,7 +87045,7 @@ public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System. return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88722,7 +87065,7 @@ public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System. return false; } - return Equals((UploadSchema_UploadSchema_Errors_ConcurrentOperationError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -88730,8 +87073,17 @@ public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System. unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -88739,21 +87091,20 @@ public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_Errors_DuplicatedTagError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_DuplicatedTagError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 { - public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; Message = message; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_DuplicatedTagError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -88770,7 +87121,7 @@ public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88790,7 +87141,7 @@ public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String return false; } - return Equals((UploadSchema_UploadSchema_Errors_DuplicatedTagError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -88798,8 +87149,17 @@ public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -88807,21 +87167,16 @@ public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchema_UploadSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_UnauthorizedOperation + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError { - public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Message = message; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -88838,7 +87193,7 @@ public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.Str return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88858,7 +87213,7 @@ public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.Str return false; } - return Equals((UploadSchema_UploadSchema_Errors_UnauthorizedOperation)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -88866,89 +87221,28 @@ public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.Str unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchemaResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema UploadSchema { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema - { - public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? SchemaVersion { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_UploadSchemaPayload : IUploadSchema_UploadSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_SchemaVersion - { - public global::System.String Id { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_SchemaVersion_SchemaVersion : IUploadSchema_UploadSchema_SchemaVersion - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_Errors_ApiNotFoundError : IUploadSchema_UploadSchema_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_Errors_ConcurrentOperationError : IUploadSchema_UploadSchema_Errors, IConcurrentOperationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_Errors_DuplicatedTagError : IUploadSchema_UploadSchema_Errors, IDuplicatedTagError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadSchema_UploadSchema_Errors_UnauthorizedOperation : IUploadSchema_UploadSchema_Errors, IUnauthorizedOperation - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersionResult : global::System.IEquatable, IValidateSchemaVersionResult + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError { - public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema validateSchema) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - ValidateSchema = validateSchema; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema ValidateSchema { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersionResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -88965,7 +87259,7 @@ public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client. return false; } - return (ValidateSchema.Equals(other.ValidateSchema)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -88985,7 +87279,7 @@ public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client. return false; } - return Equals((ValidateSchemaVersionResult)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -88993,7 +87287,11 @@ public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client. unchecked { int hash = 5; - hash ^= 397 * ValidateSchema.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -89001,18 +87299,18 @@ public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError { - public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - Id = id; - Errors = errors; + Message = message; + Changes = changes; } - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -89029,7 +87327,7 @@ public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System return false; } - return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89049,7 +87347,7 @@ public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System return false; } - return Equals((ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -89057,17 +87355,10 @@ public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System unchecked { int hash = 5; - if (Id != null) - { - hash ^= 397 * Id.GetHashCode(); - } - - if (Errors != null) + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -89077,13 +87368,13 @@ public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError { - public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; Message = message; - Name = name; + Errors = errors; } /// @@ -89091,9 +87382,9 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -89110,7 +87401,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89130,7 +87421,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy return false; } - return Equals((ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -89140,7 +87431,11 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -89148,20 +87443,16 @@ public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::Sy // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 { - public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - Message = message; - ApiId = apiId; - Tag = tag; + Collections = collections; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } - public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -89178,7 +87469,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::S return false; } - return (Message.Equals(other.Message)) && ApiId.Equals(other.ApiId) && Tag.Equals(other.Tag); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89198,7 +87489,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::S return false; } - return Equals((ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -89206,9 +87497,11 @@ public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::S unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -89216,23 +87509,16 @@ public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 { - public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Message = message; - ApiId = apiId; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -89249,7 +87535,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::Syst return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89269,7 +87555,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::Syst return false; } - return Equals((ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -89277,9 +87563,11 @@ public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::Syst unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -89287,21 +87575,20 @@ public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::Syst // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 { - public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; Message = message; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -89318,7 +87605,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global: return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89338,7 +87625,7 @@ public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global: return false; } - return Equals((ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -89346,76 +87633,34 @@ public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global: unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersionResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema ValidateSchema { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema - { - public global::System.String? Id { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload : IValidateSchemaVersion_ValidateSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, ISchemaNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation : IValidateSchemaVersion_ValidateSchema_Errors, IUnauthorizedOperation - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdatedResult : global::System.IEquatable, IOnSchemaVersionValidationUpdatedResult + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 { - public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate onSchemaVersionValidationUpdate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - OnSchemaVersionValidationUpdate = onSchemaVersionValidationUpdate; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate OnSchemaVersionValidationUpdate { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdatedResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -89432,7 +87677,7 @@ public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL return false; } - return (OnSchemaVersionValidationUpdate.Equals(other.OnSchemaVersionValidationUpdate)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89452,7 +87697,7 @@ public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL return false; } - return Equals((OnSchemaVersionValidationUpdatedResult)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -89460,7 +87705,11 @@ public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL unchecked { int hash = 5; - hash ^= 397 * OnSchemaVersionValidationUpdate.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -89468,21 +87717,16 @@ public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandL // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - State = state; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -89499,7 +87743,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Operatio return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89519,7 +87763,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Operatio return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -89527,8 +87771,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Operatio unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -89536,23 +87783,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Operatio // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - this.__typename = __typename; - State = state; - Errors = errors; + Message = message; + Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1? other) { if (ReferenceEquals(null, other)) { @@ -89569,7 +87811,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89589,7 +87831,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -89597,11 +87839,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Message.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -89611,23 +87852,21 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - State = state; - Changes = changes; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -89644,7 +87883,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89664,7 +87903,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -89673,12 +87912,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -89686,21 +87920,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { this.__typename = __typename; - State = state; + Message = message; + Column = column; + Position = position; + Line = line; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -89717,7 +87957,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Validati return false; } - return (__typename.Equals(other.__typename)) && State.Equals(other.State); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89737,7 +87977,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Validati return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -89746,7 +87986,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Validati { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * State.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -89754,9 +87997,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Validati // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; Message = message; @@ -89770,7 +88013,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_I public global::System.String Message { get; } public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -89807,7 +88050,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_I return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -89829,16 +88072,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { - Collections = collections; + Id = id; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -89855,7 +88100,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_M return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89875,7 +88120,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_M return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -89883,11 +88128,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_M unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -89895,16 +88137,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_M // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Collections = collections; + Errors = errors; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -89921,7 +88165,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -89941,7 +88185,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -89949,11 +88193,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -89961,88 +88206,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_O // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError - { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) - { - this.__typename = __typename; - Message = message; - } - - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); - } - - 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((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Message = message; - Client = client; - Queries = queries; + Errors = errors; + Name = name; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -90059,7 +88234,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90079,7 +88254,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -90087,17 +88262,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -90105,21 +88275,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Message = message; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -90136,7 +88303,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90156,7 +88323,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -90164,8 +88331,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -90173,13 +88340,20 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_P // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError() + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError? other) + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -90196,7 +88370,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_R return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90216,7 +88390,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_R return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -90224,6 +88398,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_R unchecked { int hash = 5; + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -90231,21 +88412,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_R // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Changes = changes; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -90262,7 +88440,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S return false; } - return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90282,7 +88460,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -90290,12 +88468,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -90303,27 +88481,22 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; Message = message; - Column = column; - Position = position; - Line = line; + Code = code; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -90340,7 +88513,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90360,7 +88533,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -90368,11 +88541,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -90380,21 +88567,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_S // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -90411,7 +88604,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_U return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90431,7 +88624,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_U return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -90440,7 +88633,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_U { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -90448,13 +88644,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_U // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + Name = name; Changes = changes; } @@ -90464,9 +88661,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -90483,7 +88681,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90503,7 +88701,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -90514,6 +88712,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -90526,14 +88725,15 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + Name = name; + TypeName = typeName; } /// @@ -90542,9 +88742,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -90561,7 +88762,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90581,7 +88782,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -90592,11 +88793,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -90604,14 +88802,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Old = old; + New = @new; } /// @@ -90619,10 +88817,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -90639,7 +88837,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90659,7 +88857,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -90669,10 +88867,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -90682,14 +88884,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Location = location; } /// @@ -90697,10 +88898,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -90717,7 +88917,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90737,7 +88937,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -90747,12 +88947,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -90760,14 +88955,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Location = location; } /// @@ -90775,10 +88969,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -90795,7 +88988,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90815,7 +89008,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -90825,12 +89018,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -90838,14 +89026,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Old = old; + New = @new; } /// @@ -90853,10 +89041,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -90873,7 +89061,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -90893,7 +89081,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -90903,10 +89091,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -90916,9 +89108,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; @@ -90932,7 +89124,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -90969,7 +89161,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -90987,12 +89179,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// @@ -91000,8 +89194,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -91018,7 +89214,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91038,7 +89234,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -91048,6 +89244,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -91055,9 +89257,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; @@ -91071,7 +89273,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -91108,7 +89310,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -91126,14 +89328,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Old = old; + New = @new; } /// @@ -91141,10 +89343,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -91161,7 +89363,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91181,7 +89383,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -91191,10 +89393,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -91204,18 +89410,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Message = message; - Code = code; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Message { get; } - public global::System.String? Code { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -91232,7 +89447,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_E return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91252,7 +89467,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_E return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -91260,12 +89475,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_E unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -91273,18 +89487,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_E // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -91301,7 +89524,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91321,7 +89544,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -91329,16 +89552,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -91346,18 +89564,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - OpenApiCollection = openApiCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -91374,7 +89601,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91394,7 +89621,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -91402,14 +89629,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Entities_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -91419,18 +89645,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Id = id; - Name = name; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Id { get; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -91447,7 +89680,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91467,7 +89700,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -91475,8 +89708,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -91484,22 +89727,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -91516,7 +89764,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91536,7 +89784,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -91544,18 +89792,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) - { - hash ^= 397 * DeployedTags_elm.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -91563,14 +89804,15 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -91579,9 +89821,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -91598,7 +89841,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91618,7 +89861,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -91629,11 +89872,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -91641,14 +89881,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -91656,10 +89895,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -91676,7 +89914,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91696,7 +89934,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -91706,12 +89944,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -91719,14 +89952,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -91734,10 +89966,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -91754,7 +89985,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91774,7 +90005,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -91784,12 +90015,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -91797,13 +90023,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + FieldName = fieldName; Changes = changes; } @@ -91813,9 +90040,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -91832,7 +90060,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91852,7 +90080,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -91863,6 +90091,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -91875,14 +90104,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + TypeName = typeName; } /// @@ -91890,10 +90118,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -91910,7 +90137,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -91930,7 +90157,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -91940,12 +90167,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -91953,14 +90175,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + TypeName = typeName; } /// @@ -91968,10 +90189,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -91988,7 +90208,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92008,7 +90228,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -92018,12 +90238,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -92031,13 +90246,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; + Old = old; + New = @new; } /// @@ -92045,9 +90261,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -92064,7 +90281,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92084,7 +90301,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -92094,7 +90311,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -92102,12 +90328,15 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// @@ -92115,8 +90344,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -92133,7 +90365,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92153,7 +90385,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -92163,6 +90395,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -92170,13 +90405,15 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// @@ -92185,8 +90422,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -92203,7 +90442,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92223,7 +90462,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -92234,6 +90473,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -92241,14 +90482,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -92256,10 +90496,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -92276,7 +90515,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92296,7 +90535,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -92306,12 +90545,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -92319,15 +90553,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + InterfaceName = interfaceName; } /// @@ -92335,11 +90567,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -92356,7 +90586,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92376,7 +90606,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -92386,9 +90616,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -92396,14 +90624,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Name = name; + FieldName = fieldName; Changes = changes; } @@ -92413,10 +90641,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -92433,7 +90661,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92453,7 +90681,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -92464,7 +90692,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -92477,15 +90705,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Old = old; + New = @new; } /// @@ -92493,11 +90720,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -92514,7 +90740,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92534,7 +90760,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -92544,9 +90770,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -92554,9 +90787,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -92572,7 +90805,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -92609,7 +90842,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -92636,13 +90869,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Location = location; + TypeName = typeName; } /// @@ -92650,9 +90883,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -92669,7 +90902,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92689,7 +90922,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -92699,7 +90932,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -92707,13 +90940,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Location = location; + TypeName = typeName; } /// @@ -92721,9 +90954,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -92740,7 +90973,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92760,7 +90993,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -92770,7 +91003,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -92778,25 +91011,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -92813,7 +91039,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92833,7 +91059,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -92841,18 +91067,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -92860,23 +91076,22 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -92893,7 +91108,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92913,7 +91128,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -92921,9 +91136,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -92931,25 +91155,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -92966,7 +91183,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -92986,7 +91203,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -92994,12 +91211,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (McpFeatureCollection != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -93009,23 +91228,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -93042,7 +91256,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93062,7 +91276,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -93070,9 +91284,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -93080,14 +91301,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Coordinate = coordinate; + Changes = changes; } /// @@ -93095,10 +91316,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93115,7 +91336,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93135,7 +91356,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93145,14 +91366,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -93162,15 +91379,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -93179,10 +91395,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93199,7 +91414,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93219,7 +91434,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93230,8 +91445,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -93239,15 +91457,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -93256,10 +91473,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93276,7 +91492,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93296,7 +91512,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93307,8 +91523,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -93316,14 +91535,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - FieldName = fieldName; Changes = changes; } @@ -93333,10 +91551,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93353,7 +91570,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93373,7 +91590,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93384,7 +91601,6 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -93397,14 +91613,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Coordinate = coordinate; + Changes = changes; } /// @@ -93412,10 +91628,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93432,7 +91648,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93452,7 +91668,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93462,14 +91678,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -93479,15 +91691,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -93496,10 +91707,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93516,7 +91726,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93536,7 +91746,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93547,8 +91757,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -93556,15 +91769,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } /// @@ -93573,10 +91784,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -93593,7 +91802,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93613,7 +91822,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93624,8 +91833,6 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -93633,13 +91840,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; } /// @@ -93647,9 +91853,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93666,7 +91871,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93686,7 +91891,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93696,7 +91901,6 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -93704,13 +91908,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Coordinate = coordinate; } /// @@ -93718,9 +91922,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -93737,7 +91941,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93757,7 +91961,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93767,7 +91971,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -93775,14 +91979,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - FieldName = fieldName; Changes = changes; } @@ -93792,10 +91995,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -93812,7 +92014,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93832,7 +92034,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -93843,7 +92045,6 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -93856,23 +92057,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Message = message; + Code = code; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -93889,7 +92085,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -93909,7 +92105,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -93917,80 +92113,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved - { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) - { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; - } - - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && 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((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved)obj); - } + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -93998,25 +92126,22 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Code = code; + Message = message; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -94033,7 +92158,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94053,7 +92178,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -94061,16 +92186,23 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (Code != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); } - if (New != null) + hash ^= 397 * Message.GetHashCode(); + if (Path != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } } return hash; @@ -94080,27 +92212,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -94117,7 +92238,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94137,7 +92258,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -94145,11 +92266,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -94157,27 +92274,22 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Code = code; + Message = message; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -94194,7 +92306,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94214,7 +92326,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -94222,11 +92334,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -94234,23 +92360,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -94267,7 +92386,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94287,7 +92406,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -94295,9 +92414,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -94305,23 +92422,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Column = column; + Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -94338,7 +92450,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94358,7 +92470,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -94366,9 +92478,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -94376,15 +92487,13 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + DeprecationReason = deprecationReason; } /// @@ -94392,11 +92501,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -94413,7 +92520,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94433,7 +92540,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -94443,11 +92550,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + if (DeprecationReason != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -94457,9 +92562,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -94475,7 +92580,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -94512,7 +92617,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -94539,14 +92644,14 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + OldType = oldType; + NewType = newType; } /// @@ -94554,10 +92659,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -94574,7 +92679,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94594,7 +92699,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -94604,16 +92709,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -94621,23 +92718,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - this.__typename = __typename; Severity = severity; - TypeName = typeName; + DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -94654,7 +92746,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94674,7 +92766,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -94682,9 +92774,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -94692,23 +92787,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - this.__typename = __typename; Severity = severity; - TypeName = typeName; + Old = old; + New = @new; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -94725,7 +92822,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94745,7 +92842,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -94753,9 +92850,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -94763,18 +92869,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Id = id; - Name = name; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -94791,7 +92897,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94811,7 +92917,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -94819,8 +92925,12 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -94828,18 +92938,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - Errors = errors; - Name = name; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -94856,7 +92973,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94876,7 +92993,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -94884,12 +93001,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -94897,18 +93020,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Errors = errors; - Name = name; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -94925,7 +93055,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -94945,7 +93075,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -94953,12 +93083,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -94966,18 +93094,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - Id = id; + Severity = severity; + Coordinate = coordinate; Name = name; + TypeName = typeName; + this.__typename = __typename; } - public global::System.String Id { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -94994,7 +93131,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95014,7 +93151,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -95022,8 +93159,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -95031,20 +93171,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Errors = errors; - HttpMethod = httpMethod; - Route = route; + Severity = severity; + Coordinate = coordinate; + Name = name; + this.__typename = __typename; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -95061,7 +93208,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95081,7 +93228,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -95089,13 +93236,15 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -95103,18 +93252,27 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - Errors = errors; + Severity = severity; + Coordinate = coordinate; Name = name; + TypeName = typeName; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -95131,7 +93289,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95151,7 +93309,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -95159,12 +93317,11 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -95172,22 +93329,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Message = message; - Code = code; - Path = path; - Locations = locations; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -95204,7 +93357,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95224,7 +93377,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -95232,23 +93385,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -95258,27 +93398,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Old = old; + New = @new; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -95295,7 +93433,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95315,7 +93453,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -95323,11 +93461,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -95335,27 +93480,25 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -95372,7 +93515,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -95392,7 +93535,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -95400,15 +93543,10 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -95416,9 +93554,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -95436,7 +93574,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String Name { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -95473,7 +93611,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -95493,9 +93631,167 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; + } + + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } + + 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved + { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + } + + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged + { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -95511,7 +93807,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -95548,7 +93844,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -95575,9 +93871,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; @@ -95591,7 +93887,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -95628,7 +93924,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -95646,9 +93942,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; @@ -95662,7 +93958,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -95699,7 +93995,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -95717,9 +94013,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -95735,7 +94031,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -95772,7 +94068,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -95799,9 +94095,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; @@ -95815,7 +94111,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -95852,7 +94148,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -95870,9 +94166,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; @@ -95888,7 +94184,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String Coordinate { get; } public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -95925,7 +94221,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -95948,9 +94244,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; @@ -95964,7 +94260,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -96001,7 +94297,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -96019,9 +94315,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -96037,7 +94333,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -96074,7 +94370,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -96101,9 +94397,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -96121,7 +94417,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -96158,7 +94454,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -96178,9 +94474,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -96198,7 +94494,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -96235,7 +94531,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -96255,9 +94551,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; @@ -96275,7 +94571,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String FieldName { get; } public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -96312,7 +94608,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -96336,9 +94632,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -96354,7 +94650,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -96391,7 +94687,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -96418,9 +94714,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -96438,7 +94734,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -96475,7 +94771,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -96495,9 +94791,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -96515,7 +94811,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -96552,7 +94848,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -96572,9 +94868,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; @@ -96588,7 +94884,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -96625,7 +94921,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -96643,9 +94939,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; @@ -96659,7 +94955,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -96696,7 +94992,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -96714,9 +95010,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; @@ -96734,7 +95030,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String FieldName { get; } public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -96771,7 +95067,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -96795,9 +95091,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -96811,7 +95107,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -96848,7 +95144,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -96866,9 +95162,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -96882,7 +95178,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -96919,7 +95215,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -96937,9 +95233,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -96955,7 +95251,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -96992,7 +95288,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -97019,9 +95315,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -97039,7 +95335,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -97076,7 +95372,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -97096,9 +95392,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -97116,7 +95412,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -97153,7 +95449,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -97173,9 +95469,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; @@ -97189,7 +95485,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -97226,7 +95522,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -97244,9 +95540,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; @@ -97260,7 +95556,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -97297,7 +95593,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -97315,9 +95611,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; @@ -97335,7 +95631,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String FieldName { get; } public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -97372,7 +95668,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -97396,9 +95692,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -97414,7 +95710,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -97451,7 +95747,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -97478,9 +95774,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -97496,7 +95792,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -97533,7 +95829,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -97560,9 +95856,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -97576,7 +95872,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -97613,7 +95909,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -97631,9 +95927,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -97647,7 +95943,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -97684,7 +95980,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -97702,9 +95998,139 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + { + Column = column; + Line = line; + } + + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + } + + 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + { + Column = column; + Line = line; + } + + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + } + + 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((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange + { + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { this.__typename = __typename; Severity = severity; @@ -97718,7 +96144,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -97755,7 +96181,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -97777,9 +96203,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -97795,7 +96221,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -97832,7 +96258,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -97859,9 +96285,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged + public partial class OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; Severity = severity; @@ -97877,7 +96303,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ public global::System.String OldType { get; } public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -97914,7 +96340,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged)obj); + return Equals((OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -97931,707 +96357,1398 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 + public partial interface IOnSchemaVersionPublishUpdatedResult { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) - { - Severity = severity; - DeprecationReason = deprecationReason; - } - - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate OnSchemaVersionPublishingUpdate { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IOperationInProgress + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskApproved + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsQueued + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IProcessingTaskIsReady + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaVersionPublishFailed + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishFailed { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) - { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaVersionPublishSuccess + { /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, ISchemaVersionPublishSuccess + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate, IWaitForApproval + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors + { + } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IConcurrentOperationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IInvalidGraphQLSchemaError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IMcpFeatureCollectionValidationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IOpenApiCollectionValidationError + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IOperationsAreNotAllowedError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IPersistedQueryValidationError + { + } - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IProcessingTimeoutError + { + } - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 + public partial interface ISchemaVersionChangeViolationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) - { - Severity = severity; - DeprecationReason = deprecationReason; - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, ISchemaVersionChangeViolationError + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, ISchemaVersionSyntaxError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors, IUnexpectedProcessingError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_ClientDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_FusionConfigurationDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_SchemaDeployment : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) - { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// 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 IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client_Client : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Client + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes : ISchemaChangeLogEntry + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IDirectiveModifiedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IEnumModifiedChange + { + } - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IInputObjectModifiedChange + { + } - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IInterfaceModifiedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IObjectModifiedChange { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) - { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// 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 IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IScalarModifiedChange + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ITypeSystemMemberAddedChange + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ISchemaChange + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, ITypeSystemMemberRemovedChange + { + } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes, IUnionModifiedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors, IPersistedQueryValidationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1 + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IPersistedQueryValidationError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IMcpFeatureCollectionValidationError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IOpenApiCollectionValidationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) - { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// 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 IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, ISchemaChangeViolationError + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_1, IInvalidGraphQLSchemaError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_2 + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_2, IMcpFeatureCollectionValidationError + { + } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_3 + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_3, IOpenApiCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4 + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IPersistedQueryValidationError + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IMcpFeatureCollectionValidationError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IOpenApiCollectionValidationError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, ISchemaChangeViolationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) - { - Severity = severity; - Coordinate = coordinate; - Name = name; - this.__typename = __typename; - Changes = changes; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IOperationsAreNotAllowedError + { + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, ISchemaVersionSyntaxError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_4, IInvalidGraphQLSchemaError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_McpFeatureCollection + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_OpenApiCollection + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) - { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - this.__typename = __typename; - } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + { public global::System.String Name { get; } - public global::System.String TypeName { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors + { + } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentAdded + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentChanged + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IArgumentRemoved + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDescriptionChanged + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDirectiveLocationAdded + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes, IDirectiveLocationRemoved { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) - { - Severity = severity; - DeprecationReason = deprecationReason; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IDescriptionChanged + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueAdded + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueChanged + { + } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_1, IEnumValueRemoved + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IDescriptionChanged + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IFieldAddedChange + { + } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IFieldRemovedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_2, IInputFieldChanged + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client_Client : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Queries + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes : ISchemaChangeLogEntry + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IDirectiveModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IEnumModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IInputObjectModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IInterfaceModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IObjectModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IScalarModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ISchemaChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes, IUnionModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Queries_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DeprecatedChange_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_TypeChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_1 + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_Errors_Locations_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_Changes_Changes_Changes, ITypeChanged + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 + public partial class UploadSchemaResult : global::System.IEquatable, IUploadSchemaResult { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public UploadSchemaResult(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema uploadSchema) { - Severity = severity; - Old = old; - New = @new; - this.__typename = __typename; + UploadSchema = uploadSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema UploadSchema { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(UploadSchemaResult? other) { if (ReferenceEquals(null, other)) { @@ -98648,7 +97765,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (UploadSchema.Equals(other.UploadSchema)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -98668,7 +97785,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((UploadSchemaResult)obj); } public override global::System.Int32 GetHashCode() @@ -98676,18 +97793,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * UploadSchema.GetHashCode(); return hash; } } @@ -98695,25 +97801,18 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 + public partial class UploadSchema_UploadSchema_UploadSchemaPayload : global::System.IEquatable, IUploadSchema_UploadSchema_UploadSchemaPayload { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public UploadSchema_UploadSchema_UploadSchemaPayload(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? schemaVersion, global::System.Collections.Generic.IReadOnlyList? errors) { - Severity = severity; - OldType = oldType; - NewType = newType; - this.__typename = __typename; + SchemaVersion = schemaVersion; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? SchemaVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_UploadSchemaPayload? other) { if (ReferenceEquals(null, other)) { @@ -98730,7 +97829,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (((SchemaVersion is null && other.SchemaVersion is null) || SchemaVersion != null && SchemaVersion.Equals(other.SchemaVersion))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -98750,7 +97849,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((UploadSchema_UploadSchema_UploadSchemaPayload)obj); } public override global::System.Int32 GetHashCode() @@ -98758,10 +97857,19 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + if (SchemaVersion != null) + { + hash ^= 397 * SchemaVersion.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -98769,22 +97877,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial class UploadSchema_UploadSchema_SchemaVersion_SchemaVersion : global::System.IEquatable, IUploadSchema_UploadSchema_SchemaVersion_SchemaVersion { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(global::System.String id) { - Code = code; - Message = message; - Path = path; - Locations = locations; + Id = id; } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.String Id { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_SchemaVersion_SchemaVersion? other) { if (ReferenceEquals(null, other)) { @@ -98801,7 +97903,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Id.Equals(other.Id)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -98821,7 +97923,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); + return Equals((UploadSchema_UploadSchema_SchemaVersion_SchemaVersion)obj); } public override global::System.Int32 GetHashCode() @@ -98829,25 +97931,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * Id.GetHashCode(); return hash; } } @@ -98855,16 +97939,23 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial class UploadSchema_UploadSchema_Errors_ApiNotFoundError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_ApiNotFoundError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) + public UploadSchema_UploadSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { + this.__typename = __typename; Message = message; + ApiId = apiId; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -98881,7 +97972,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -98901,7 +97992,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); + return Equals((UploadSchema_UploadSchema_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -98909,7 +98000,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -98917,22 +98010,21 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial class UploadSchema_UploadSchema_Errors_ConcurrentOperationError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_ConcurrentOperationError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public UploadSchema_UploadSchema_Errors_ConcurrentOperationError(global::System.String __typename, global::System.String message) { - Code = code; + this.__typename = __typename; Message = message; - Path = path; - Locations = locations; } - public global::System.String? Code { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -98949,7 +98041,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -98969,7 +98061,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + return Equals((UploadSchema_UploadSchema_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -98977,25 +98069,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - return hash; } } @@ -99003,16 +98078,21 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial class UploadSchema_UploadSchema_Errors_DuplicatedTagError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_DuplicatedTagError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) + public UploadSchema_UploadSchema_Errors_DuplicatedTagError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; Message = message; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_DuplicatedTagError? other) { if (ReferenceEquals(null, other)) { @@ -99029,7 +98109,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99049,7 +98129,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); + return Equals((UploadSchema_UploadSchema_Errors_DuplicatedTagError)obj); } public override global::System.Int32 GetHashCode() @@ -99057,6 +98137,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); return hash; } @@ -99065,18 +98146,21 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial class UploadSchema_UploadSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_UnauthorizedOperation { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + public UploadSchema_UploadSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { - Column = column; - Line = line; + this.__typename = __typename; + Message = message; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -99093,7 +98177,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99113,7 +98197,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + return Equals((UploadSchema_UploadSchema_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -99121,8 +98205,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -99130,23 +98214,16 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Q // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange + public partial class UploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IUploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public UploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(UploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -99163,7 +98240,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99183,7 +98260,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((UploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -99191,39 +98268,94 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchemaResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema UploadSchema { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema + { + public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? SchemaVersion { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_UploadSchemaPayload : IUploadSchema_UploadSchema + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_SchemaVersion + { + public global::System.String Id { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_SchemaVersion_SchemaVersion : IUploadSchema_UploadSchema_SchemaVersion + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors_ApiNotFoundError : IUploadSchema_UploadSchema_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors_ConcurrentOperationError : IUploadSchema_UploadSchema_Errors, IConcurrentOperationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors_DuplicatedTagError : IUploadSchema_UploadSchema_Errors, IDuplicatedTagError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors_UnauthorizedOperation : IUploadSchema_UploadSchema_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError : IUploadSchema_UploadSchema_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged + public partial class ValidateSchemaVersionResult : global::System.IEquatable, IValidateSchemaVersionResult { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ValidateSchemaVersionResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema validateSchema) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + ValidateSchema = validateSchema; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema ValidateSchema { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ValidateSchemaVersionResult? other) { if (ReferenceEquals(null, other)) { @@ -99240,7 +98372,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (ValidateSchema.Equals(other.ValidateSchema)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99260,7 +98392,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((ValidateSchemaVersionResult)obj); } public override global::System.Int32 GetHashCode() @@ -99268,16 +98400,81 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + hash ^= 397 * ValidateSchema.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload + { + public ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(global::System.String? id, global::System.Collections.Generic.IReadOnlyList? errors) + { + Id = id; + Errors = errors; + } + + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (((Id is null && other.Id is null) || Id != null && Id.Equals(other.Id))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + } + + 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((ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Id != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); } - if (New != null) + if (Errors != null) { - hash ^= 397 * New.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -99287,25 +98484,23 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged + public partial class ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; + Message = message; + Name = name; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -99322,7 +98517,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99342,7 +98537,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged)obj); + return Equals((ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -99351,9 +98546,8 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -99361,18 +98555,20 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(global::System.String message, global::System.String apiId, global::System.String tag) { - Column = column; - Line = line; + Message = message; + ApiId = apiId; + Tag = tag; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } + public global::System.String Tag { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -99389,7 +98585,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (Message.Equals(other.Message)) && ApiId.Equals(other.ApiId) && Tag.Equals(other.Tag); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99409,7 +98605,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -99417,8 +98613,9 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } @@ -99426,18 +98623,23 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError { - public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { - Column = column; - Line = line; + this.__typename = __typename; + Message = message; + ApiId = apiId; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -99454,7 +98656,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -99474,7 +98676,7 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C return false; } - return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -99482,1130 +98684,568 @@ public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_C unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdatedResult + public partial class ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation { - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate OnSchemaVersionValidationUpdate { get; } - } + public ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + { + this.__typename = __typename; + Message = message; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate - { + /// + /// The name of the current Object type at runtime. + /// public global::System.String __typename { get; } - } + public global::System.String Message { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IOperationInProgress - { - } + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionValidationFailed - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationFailed - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISchemaVersionValidationSuccess - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationSuccess - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IValidationInProgress - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IInvalidGraphQLSchemaError - { - } + return Equals((ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IOpenApiCollectionValidationError + public partial class ValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError { - } + public ValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError(global::System.String message) + { + Message = message; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IOperationsAreNotAllowedError - { - } + public global::System.String Message { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IPersistedQueryValidationError - { - } + public virtual global::System.Boolean Equals(ValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IProcessingTimeoutError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, ISchemaVersionChangeViolationError - { - } + return (Message.Equals(other.Message)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, ISchemaVersionSyntaxError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IUnexpectedProcessingError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes : ISchemaChangeLogEntry - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IDirectiveModifiedChange - { - } + return Equals((ValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IEnumModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Message.GetHashCode(); + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IInputObjectModifiedChange + public partial interface IValidateSchemaVersionResult { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema ValidateSchema { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IInterfaceModifiedChange + public partial interface IValidateSchemaVersion_ValidateSchema { + public global::System.String? Id { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IObjectModifiedChange + public partial interface IValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload : IValidateSchemaVersion_ValidateSchema { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IScalarModifiedChange + public partial interface IValidateSchemaVersion_ValidateSchema_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ITypeSystemMemberAddedChange + public partial interface IValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, IStageNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ISchemaChange + public partial interface IValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, ISchemaNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ITypeSystemMemberRemovedChange + public partial interface IValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError : IValidateSchemaVersion_ValidateSchema_Errors, IApiNotFoundError { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IUnionModifiedChange + public partial interface IValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation : IValidateSchemaVersion_ValidateSchema_Errors, IUnauthorizedOperation { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors + public partial interface IValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError : IValidateSchemaVersion_ValidateSchema_Errors, IError { - public global::System.String Message { get; } - public global::System.String? Code { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors + public partial class OnSchemaVersionValidationUpdatedResult : global::System.IEquatable, IOnSchemaVersionValidationUpdatedResult { - } + public OnSchemaVersionValidationUpdatedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate onSchemaVersionValidationUpdate) + { + OnSchemaVersionValidationUpdate = onSchemaVersionValidationUpdate; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate OnSchemaVersionValidationUpdate { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdatedResult? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + return (OnSchemaVersionValidationUpdate.Equals(other.OnSchemaVersionValidationUpdate)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes : ISchemaChangeLogEntry - { - } + return Equals((OnSchemaVersionValidationUpdatedResult)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IDirectiveModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * OnSchemaVersionValidationUpdate.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IEnumModifiedChange + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress { - } + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + { + this.__typename = __typename; + State = state; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IInputObjectModifiedChange - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IInterfaceModifiedChange - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IObjectModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IScalarModifiedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ITypeSystemMemberAddedChange - { - } + return (__typename.Equals(other.__typename)) && State.Equals(other.State); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ISchemaChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ITypeSystemMemberRemovedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IUnionModifiedChange - { + if (obj.GetType() != GetType()) + { + return false; + } + + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed { + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList errors) + { + this.__typename = __typename; + State = state; + Errors = errors; + } + + /// + /// The name of the current Object type at runtime. + /// public global::System.String __typename { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentAdded - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentChanged - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentRemoved - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDescriptionChanged - { - } + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDirectiveLocationAdded - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDirectiveLocationRemoved - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1 - { - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IDescriptionChanged - { - } + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueAdded - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueChanged - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueRemoved + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess { - } + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + State = state; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2 - { + /// + /// The name of the current Object type at runtime. + /// public global::System.String __typename { get; } - } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IDescriptionChanged - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IFieldAddedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IFieldRemovedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IInputFieldChanged - { - } + return (__typename.Equals(other.__typename)) && State.Equals(other.State) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3 - { - public global::System.String __typename { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IDescriptionChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IFieldAddedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IFieldRemovedChange - { - } + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IInterfaceImplementationAdded - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IInterfaceImplementationRemoved - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IOutputFieldChanged + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress { - } + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state) + { + this.__typename = __typename; + State = state; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IPossibleTypeAdded - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IPossibleTypeRemoved - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4 - { - public global::System.String __typename { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IDescriptionChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IFieldAddedChange - { - } + return (__typename.Equals(other.__typename)) && State.Equals(other.State); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IFieldRemovedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IInterfaceImplementationAdded - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IInterfaceImplementationRemoved - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IOutputFieldChanged - { - } + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_5 - { - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * State.GetHashCode(); + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_5, IDescriptionChanged + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDirectiveLocationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IInputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IFieldAddedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IFieldRemovedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IOutputFieldChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_5 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_5, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IUnionMemberAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentAdded - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, IDeprecatedChange - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, IDescriptionChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, ITypeChanged - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_1 - { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_1 - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesResult : global::System.IEquatable, IUpdateStagesResult - { - public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages updateStages) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - UpdateStages = updateStages; + this.__typename = __typename; + Message = message; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages UpdateStages { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(UpdateStagesResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -100622,7 +99262,7 @@ public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateSt return false; } - return (UpdateStages.Equals(other.UpdateStages)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100642,7 +99282,7 @@ public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateSt return false; } - return Equals((UpdateStagesResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -100650,7 +99290,13 @@ public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateSt unchecked { int hash = 5; - hash ^= 397 * UpdateStages.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -100658,18 +99304,16 @@ public UpdateStagesResult(global::ChilliCream.Nitro.CommandLine.Client.IUpdateSt // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_UpdateStagesPayload : global::System.IEquatable, IUpdateStages_UpdateStages_UpdateStagesPayload + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError { - public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? api, global::System.Collections.Generic.IReadOnlyList? errors) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Api = api; - Errors = errors; + Collections = collections; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_UpdateStagesPayload? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -100686,7 +99330,7 @@ public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.C return false; } - return (((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100706,7 +99350,7 @@ public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.C return false; } - return Equals((UpdateStages_UpdateStages_UpdateStagesPayload)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -100714,17 +99358,9 @@ public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.C unchecked { int hash = 5; - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Errors != null) + foreach (var Collections_elm in Collections) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -100734,16 +99370,16 @@ public UpdateStages_UpdateStages_UpdateStagesPayload(global::ChilliCream.Nitro.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Api_Api : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Api + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError { - public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IReadOnlyList stages) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Stages = stages; + Collections = collections; } - public global::System.Collections.Generic.IReadOnlyList Stages { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Api? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -100760,7 +99396,7 @@ public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IRea return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100780,7 +99416,7 @@ public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IRea return false; } - return Equals((UpdateStages_UpdateStages_Api_Api)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -100788,9 +99424,9 @@ public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IRea unchecked { int hash = 5; - foreach (var Stages_elm in Stages) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Stages_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -100800,13 +99436,12 @@ public UpdateStages_UpdateStages_Api_Api(global::System.Collections.Generic.IRea // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_ApiNotFoundError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_ApiNotFoundError + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError { - public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - ApiId = apiId; } /// @@ -100814,9 +99449,8 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String ApiId { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -100833,7 +99467,7 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100853,7 +99487,7 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ return false; } - return Equals((UpdateStages_UpdateStages_Errors_ApiNotFoundError)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -100863,7 +99497,6 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -100871,23 +99504,20 @@ public UpdateStages_UpdateStages_Errors_ApiNotFoundError(global::System.String _ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_StageNotFoundError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StageNotFoundError + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError { - public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; Message = message; - Name = name; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -100904,7 +99534,7 @@ public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100924,7 +99554,7 @@ public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String return false; } - return Equals((UpdateStages_UpdateStages_Errors_StageNotFoundError)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -100932,9 +99562,17 @@ public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -100942,13 +99580,12 @@ public UpdateStages_UpdateStages_Errors_StageNotFoundError(global::System.String // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError { - public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList stages) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError(global::System.String __typename, global::System.String message) { this.__typename = __typename; Message = message; - Stages = stages; } /// @@ -100956,9 +99593,8 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo /// public global::System.String __typename { get; } public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Stages { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -100975,7 +99611,7 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -100995,7 +99631,7 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo return false; } - return Equals((UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -101005,11 +99641,6 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Message.GetHashCode(); - foreach (var Stages_elm in Stages) - { - hash ^= 397 * Stages_elm.GetHashCode(); - } - return hash; } } @@ -101017,21 +99648,13 @@ public UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_StageValidationError : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_StageValidationError + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError { - public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.String message, global::System.String __typename) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError() { - 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(UpdateStages_UpdateStages_Errors_StageValidationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -101048,7 +99671,7 @@ public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.Stri return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101068,7 +99691,7 @@ public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.Stri return false; } - return Equals((UpdateStages_UpdateStages_Errors_StageValidationError)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -101076,8 +99699,6 @@ public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.Stri unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -101085,22 +99706,21 @@ public UpdateStages_UpdateStages_Errors_StageValidationError(global::System.Stri // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Api_Stages_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError { - public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Id = id; - Name = name; - DisplayName = displayName; - Conditions = conditions; + this.__typename = __typename; + Changes = changes; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.String DisplayName { get; } - public global::System.Collections.Generic.IReadOnlyList Conditions { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Stage? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -101117,7 +99737,7 @@ public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, glob return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && DisplayName.Equals(other.DisplayName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions); + return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101137,7 +99757,7 @@ public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, glob return false; } - return Equals((UpdateStages_UpdateStages_Api_Stages_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -101145,12 +99765,10 @@ public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, glob unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * DisplayName.GetHashCode(); - foreach (var Conditions_elm in Conditions) + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Conditions_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -101160,20 +99778,27 @@ public UpdateStages_UpdateStages_Api_Stages_Stage(global::System.String id, glob // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError { - public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? publishedSchema, global::System.Collections.Generic.IReadOnlyList publishedClients) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { - Name = name; - PublishedSchema = publishedSchema; - PublishedClients = publishedClients; + this.__typename = __typename; + Message = message; + Column = column; + Position = position; + Line = line; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? PublishedSchema { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedClients { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_Stage? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -101190,7 +99815,7 @@ public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, return false; } - return (Name.Equals(other.Name)) && ((PublishedSchema is null && other.PublishedSchema is null) || PublishedSchema != null && PublishedSchema.Equals(other.PublishedSchema)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedClients, other.PublishedClients); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101210,7 +99835,7 @@ public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -101218,17 +99843,11 @@ public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - if (PublishedSchema != null) - { - hash ^= 397 * PublishedSchema.GetHashCode(); - } - - foreach (var PublishedClients_elm in PublishedClients) - { - hash ^= 397 * PublishedClients_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -101236,16 +99855,21 @@ public UpdateStages_UpdateStages_Errors_Stages_Stage(global::System.String name, // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError { - public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError(global::System.String __typename, global::System.String message) { - AfterStage = afterStage; + this.__typename = __typename; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -101262,7 +99886,7 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(globa return false; } - return (((AfterStage is null && other.AfterStage is null) || AfterStage != null && AfterStage.Equals(other.AfterStage))); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101282,7 +99906,7 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(globa return false; } - return Equals((UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -101290,11 +99914,8 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(globa unchecked { int hash = 5; - if (AfterStage != null) - { - hash ^= 397 * AfterStage.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -101302,16 +99923,25 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(globa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? version) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Version = version; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? Version { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101328,7 +99958,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVe return false; } - return (((Version is null && other.Version is null) || Version != null && Version.Equals(other.Version))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101348,7 +99978,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVe return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101356,9 +99986,12 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVe unchecked { int hash = 5; - if (Version != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Version.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -101368,18 +100001,25 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client client, global::System.Collections.Generic.IReadOnlyList publishedVersions) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Client = client; - PublishedVersions = publishedVersions; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client Client { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedVersions { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101396,7 +100036,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient( return false; } - return (Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedVersions, other.PublishedVersions); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101416,7 +100056,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient( return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101424,10 +100064,12 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient( unchecked { int hash = 5; - hash ^= 397 * Client.GetHashCode(); - foreach (var PublishedVersions_elm in PublishedVersions) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * PublishedVersions_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -101437,16 +100079,25 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient( // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage : global::System.IEquatable, IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange { - public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global::System.String name) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Name = name; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101463,7 +100114,7 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global:: return false; } - return (Name.Equals(other.Name)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101483,7 +100134,7 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global:: return false; } - return Equals((UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101491,7 +100142,14 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global:: unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -101499,16 +100157,25 @@ public UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(global:: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(global::System.String tag) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Tag = tag; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Tag { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101525,7 +100192,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVer return false; } - return (Tag.Equals(other.Tag)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101545,7 +100212,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVer return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101553,7 +100220,14 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVer unchecked { int hash = 5; - hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -101561,16 +100235,25 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVer // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(global::System.String name) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Name = name; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101587,7 +100270,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(gl return false; } - return (Name.Equals(other.Name)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101607,7 +100290,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(gl return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101615,7 +100298,14 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(gl unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -101623,16 +100313,25 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(gl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? version) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Version = version; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? Version { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -101649,7 +100348,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion return false; } - return (((Version is null && other.Version is null) || Version != null && Version.Equals(other.Version))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101669,7 +100368,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101677,9 +100376,12 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion unchecked { int hash = 5; - if (Version != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Version.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -101689,16 +100391,23 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion : global::System.IEquatable, IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange { - public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion(global::System.String tag) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Tag = tag; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Tag { get; } - - public virtual global::System.Boolean Equals(UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -101715,7 +100424,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion return false; } - return (Tag.Equals(other.Tag)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -101735,7 +100444,7 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion return false; } - return Equals((UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -101743,262 +100452,31 @@ public UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersion unchecked { int hash = 5; - hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStagesResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages UpdateStages { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? Api { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_UpdateStagesPayload : IUpdateStages_UpdateStages - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api - { - public global::System.Collections.Generic.IReadOnlyList Stages { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Api : IUpdateStages_UpdateStages_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_ApiNotFoundError : IUpdateStages_UpdateStages_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_StageNotFoundError : IUpdateStages_UpdateStages_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStagesHavePublishedDependenciesError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Stages { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError : IUpdateStages_UpdateStages_Errors, IStagesHavePublishedDependenciesError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_StageValidationError : IUpdateStages_UpdateStages_Errors - { - public global::System.String Message { get; } - /// - /// 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 IStageDetailPrompt_Stage - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.String DisplayName { get; } - public global::System.Collections.Generic.IReadOnlyList Conditions { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages : IStageDetailPrompt_Stage - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages_Stage : IUpdateStages_UpdateStages_Api_Stages - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages - { - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? PublishedSchema { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedClients { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_Stage : IUpdateStages_UpdateStages_Errors_Stages - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStageCondition - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions : IStageCondition - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IAfterStageCondition - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition : IUpdateStages_UpdateStages_Api_Stages_Conditions, IAfterStageCondition - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? Version { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client Client { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedVersions { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage : IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version - { - public global::System.String Tag { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions - { - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? Version { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version - { - public global::System.String Tag { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion : IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryResult : global::System.IEquatable, IListStagesQueryResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange { - public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? node) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { - Node = node; + this.__typename = __typename; + Severity = severity; } /// - /// Fetches an object given its ID. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(ListStagesQueryResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102015,7 +100493,7 @@ public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListS return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102035,7 +100513,7 @@ public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListS return false; } - return Equals((ListStagesQueryResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102043,11 +100521,8 @@ public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListS unchecked { int hash = 5; - if (Node != null) - { - hash ^= 397 * Node.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -102055,16 +100530,23 @@ public ListStagesQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListS // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Api : global::System.IEquatable, IListStagesQuery_Node_Api + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange { - public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList stages) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Stages = stages; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.Collections.Generic.IReadOnlyList Stages { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Api? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -102081,7 +100563,7 @@ public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Stages, other.Stages)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102101,7 +100583,7 @@ public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList return false; } - return Equals((ListStagesQuery_Node_Api)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102109,11 +100591,9 @@ public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList unchecked { int hash = 5; - foreach (var Stages_elm in Stages) - { - hash ^= 397 * Stages_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -102121,13 +100601,25 @@ public ListStagesQuery_Node_Api(global::System.Collections.Generic.IReadOnlyList // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_ApiDocument : global::System.IEquatable, IListStagesQuery_Node_ApiDocument + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange { - public ListStagesQuery_Node_ApiDocument() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_ApiDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102144,7 +100636,7 @@ public ListStagesQuery_Node_ApiDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102164,7 +100656,7 @@ public ListStagesQuery_Node_ApiDocument() return false; } - return Equals((ListStagesQuery_Node_ApiDocument)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102172,6 +100664,14 @@ public ListStagesQuery_Node_ApiDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102179,13 +100679,18 @@ public ListStagesQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_ApiKey : global::System.IEquatable, IListStagesQuery_Node_ApiKey + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError { - public ListStagesQuery_Node_ApiKey() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { + Message = message; + Code = code; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_ApiKey? other) + public global::System.String Message { get; } + public global::System.String? Code { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -102202,7 +100707,7 @@ public ListStagesQuery_Node_ApiKey() return false; } - return true; + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102222,7 +100727,7 @@ public ListStagesQuery_Node_ApiKey() return false; } - return Equals((ListStagesQuery_Node_ApiKey)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -102230,6 +100735,12 @@ public ListStagesQuery_Node_ApiKey() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -102237,13 +100748,18 @@ public ListStagesQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Client : global::System.IEquatable, IListStagesQuery_Node_Client + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection { - public ListStagesQuery_Node_Client() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Client? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -102260,7 +100776,7 @@ public ListStagesQuery_Node_Client() return false; } - return true; + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102280,7 +100796,7 @@ public ListStagesQuery_Node_Client() return false; } - return Equals((ListStagesQuery_Node_Client)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -102288,6 +100804,16 @@ public ListStagesQuery_Node_Client() unchecked { int hash = 5; + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -102295,13 +100821,18 @@ public ListStagesQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_ClientChangeLog : global::System.IEquatable, IListStagesQuery_Node_ClientChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection { - public ListStagesQuery_Node_ClientChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { + OpenApiCollection = openApiCollection; + Entities = entities; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -102318,7 +100849,7 @@ public ListStagesQuery_Node_ClientChangeLog() return false; } - return true; + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102338,7 +100869,7 @@ public ListStagesQuery_Node_ClientChangeLog() return false; } - return Equals((ListStagesQuery_Node_ClientChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -102346,6 +100877,16 @@ public ListStagesQuery_Node_ClientChangeLog() unchecked { int hash = 5; + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -102353,13 +100894,18 @@ public ListStagesQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_ClientDeployment : global::System.IEquatable, IListStagesQuery_Node_ClientDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client { - public ListStagesQuery_Node_ClientDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client(global::System.String id, global::System.String name) { + Id = id; + Name = name; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientDeployment? other) + public global::System.String Id { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -102376,7 +100922,7 @@ public ListStagesQuery_Node_ClientDeployment() return false; } - return true; + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102396,7 +100942,7 @@ public ListStagesQuery_Node_ClientDeployment() return false; } - return Equals((ListStagesQuery_Node_ClientDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -102404,6 +100950,8 @@ public ListStagesQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -102411,13 +100959,22 @@ public ListStagesQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_ClientVersion : global::System.IEquatable, IListStagesQuery_Node_ClientVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed { - public ListStagesQuery_Node_ClientVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_ClientVersion? other) + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -102434,7 +100991,7 @@ public ListStagesQuery_Node_ClientVersion() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102454,7 +101011,7 @@ public ListStagesQuery_Node_ClientVersion() return false; } - return Equals((ListStagesQuery_Node_ClientVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -102462,6 +101019,18 @@ public ListStagesQuery_Node_ClientVersion() unchecked { int hash = 5; + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -102469,13 +101038,25 @@ public ListStagesQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IListStagesQuery_Node_CoordinateClientUsageMetrics + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange { - public ListStagesQuery_Node_CoordinateClientUsageMetrics() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_CoordinateClientUsageMetrics? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102492,7 +101073,7 @@ public ListStagesQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102512,7 +101093,7 @@ public ListStagesQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ListStagesQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102520,6 +101101,14 @@ public ListStagesQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102527,13 +101116,25 @@ public ListStagesQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Environment : global::System.IEquatable, IListStagesQuery_Node_Environment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange { - public ListStagesQuery_Node_Environment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Environment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102550,7 +101151,7 @@ public ListStagesQuery_Node_Environment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102570,7 +101171,7 @@ public ListStagesQuery_Node_Environment() return false; } - return Equals((ListStagesQuery_Node_Environment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102578,6 +101179,14 @@ public ListStagesQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102585,13 +101194,25 @@ public ListStagesQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IListStagesQuery_Node_FusionConfigurationChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange { - public ListStagesQuery_Node_FusionConfigurationChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_FusionConfigurationChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102608,7 +101229,7 @@ public ListStagesQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102628,7 +101249,7 @@ public ListStagesQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ListStagesQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102636,6 +101257,14 @@ public ListStagesQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102643,13 +101272,25 @@ public ListStagesQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IListStagesQuery_Node_FusionConfigurationDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange { - public ListStagesQuery_Node_FusionConfigurationDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_FusionConfigurationDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102666,7 +101307,7 @@ public ListStagesQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102686,7 +101327,7 @@ public ListStagesQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ListStagesQuery_Node_FusionConfigurationDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102694,6 +101335,14 @@ public ListStagesQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102701,13 +101350,25 @@ public ListStagesQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange { - public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102724,7 +101385,7 @@ public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102744,7 +101405,7 @@ public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102752,6 +101413,14 @@ public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102759,13 +101428,25 @@ public ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLDirectiveDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange { - public ListStagesQuery_Node_GraphQLDirectiveDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLDirectiveDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102782,7 +101463,7 @@ public ListStagesQuery_Node_GraphQLDirectiveDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102802,7 +101483,7 @@ public ListStagesQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102810,6 +101491,14 @@ public ListStagesQuery_Node_GraphQLDirectiveDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -102817,13 +101506,23 @@ public ListStagesQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLEnumTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange { - public ListStagesQuery_Node_GraphQLEnumTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLEnumTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -102840,7 +101539,7 @@ public ListStagesQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102860,7 +101559,7 @@ public ListStagesQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102868,6 +101567,9 @@ public ListStagesQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -102875,13 +101577,21 @@ public ListStagesQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLEnumValueDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange { - public ListStagesQuery_Node_GraphQLEnumValueDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { + this.__typename = __typename; + Severity = severity; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLEnumValueDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -102898,7 +101608,7 @@ public ListStagesQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102918,7 +101628,7 @@ public ListStagesQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102926,6 +101636,8 @@ public ListStagesQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -102933,13 +101645,23 @@ public ListStagesQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInputObjectFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange { - public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInputObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -102956,7 +101678,7 @@ public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -102976,7 +101698,7 @@ public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -102984,6 +101706,9 @@ public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -102991,13 +101716,25 @@ public ListStagesQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInputObjectTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange { - public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInputObjectTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -103014,7 +101751,7 @@ public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103034,7 +101771,7 @@ public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -103042,6 +101779,14 @@ public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -103049,13 +101794,27 @@ public ListStagesQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded { - public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -103072,7 +101831,7 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103092,7 +101851,7 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -103100,6 +101859,11 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -103107,13 +101871,27 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged { - public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -103130,7 +101908,7 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103150,7 +101928,7 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -103158,6 +101936,15 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -103165,13 +101952,27 @@ public ListStagesQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLInterfaceTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved { - public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLInterfaceTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -103188,7 +101989,7 @@ public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103208,7 +102009,7 @@ public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -103216,6 +102017,11 @@ public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -103223,13 +102029,25 @@ public ListStagesQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged { - public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -103246,7 +102064,7 @@ public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103266,7 +102084,7 @@ public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -103274,6 +102092,18 @@ public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -103281,13 +102111,23 @@ public ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLObjectFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded { - public ListStagesQuery_Node_GraphQLObjectFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -103304,7 +102144,7 @@ public ListStagesQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103324,7 +102164,7 @@ public ListStagesQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -103332,6 +102172,9 @@ public ListStagesQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -103339,13 +102182,23 @@ public ListStagesQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLScalarTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved { - public ListStagesQuery_Node_GraphQLScalarTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { + this.__typename = __typename; + Severity = severity; + Location = location; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLScalarTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -103362,7 +102215,7 @@ public ListStagesQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103382,7 +102235,7 @@ public ListStagesQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -103390,6 +102243,9 @@ public ListStagesQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -103397,13 +102253,25 @@ public ListStagesQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IListStagesQuery_Node_GraphQLUnionTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 { - public ListStagesQuery_Node_GraphQLUnionTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_GraphQLUnionTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -103420,7 +102288,7 @@ public ListStagesQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103440,7 +102308,7 @@ public ListStagesQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ListStagesQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -103448,6 +102316,18 @@ public ListStagesQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -103455,13 +102335,23 @@ public ListStagesQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Group : global::System.IEquatable, IListStagesQuery_Node_Group + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded { - public ListStagesQuery_Node_Group() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Group? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -103478,7 +102368,7 @@ public ListStagesQuery_Node_Group() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103498,7 +102388,7 @@ public ListStagesQuery_Node_Group() return false; } - return Equals((ListStagesQuery_Node_Group)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -103506,6 +102396,9 @@ public ListStagesQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -103513,13 +102406,25 @@ public ListStagesQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_McpFeatureCollection : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged { - public ListStagesQuery_Node_McpFeatureCollection() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -103536,7 +102441,7 @@ public ListStagesQuery_Node_McpFeatureCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103556,7 +102461,7 @@ public ListStagesQuery_Node_McpFeatureCollection() return false; } - return Equals((ListStagesQuery_Node_McpFeatureCollection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -103564,6 +102469,14 @@ public ListStagesQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -103571,13 +102484,23 @@ public ListStagesQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved { - public ListStagesQuery_Node_McpFeatureCollectionChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -103594,7 +102517,7 @@ public ListStagesQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103614,7 +102537,7 @@ public ListStagesQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ListStagesQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -103622,6 +102545,9 @@ public ListStagesQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -103629,20 +102555,32 @@ public ListStagesQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 { - public ListStagesQuery_Node_McpFeatureCollectionDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionDeployment? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) { return true; } @@ -103652,7 +102590,7 @@ public ListStagesQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103672,7 +102610,7 @@ public ListStagesQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ListStagesQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -103680,6 +102618,18 @@ public ListStagesQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -103687,13 +102637,27 @@ public ListStagesQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IListStagesQuery_Node_McpFeatureCollectionVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange { - public ListStagesQuery_Node_McpFeatureCollectionVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_McpFeatureCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -103710,7 +102674,7 @@ public ListStagesQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103730,7 +102694,7 @@ public ListStagesQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ListStagesQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -103738,6 +102702,11 @@ public ListStagesQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -103745,13 +102714,27 @@ public ListStagesQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_OpenApiCollection : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange { - public ListStagesQuery_Node_OpenApiCollection() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -103768,7 +102751,7 @@ public ListStagesQuery_Node_OpenApiCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103788,7 +102771,7 @@ public ListStagesQuery_Node_OpenApiCollection() return false; } - return Equals((ListStagesQuery_Node_OpenApiCollection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -103796,6 +102779,11 @@ public ListStagesQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -103803,13 +102791,27 @@ public ListStagesQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged { - public ListStagesQuery_Node_OpenApiCollectionChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -103826,7 +102828,7 @@ public ListStagesQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103846,7 +102848,7 @@ public ListStagesQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ListStagesQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -103854,6 +102856,15 @@ public ListStagesQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -103861,13 +102872,25 @@ public ListStagesQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 { - public ListStagesQuery_Node_OpenApiCollectionDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -103884,7 +102907,7 @@ public ListStagesQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103904,7 +102927,7 @@ public ListStagesQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ListStagesQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -103912,6 +102935,18 @@ public ListStagesQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -103919,13 +102954,27 @@ public ListStagesQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IListStagesQuery_Node_OpenApiCollectionVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 { - public ListStagesQuery_Node_OpenApiCollectionVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_OpenApiCollectionVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -103942,7 +102991,7 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -103962,7 +103011,7 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ListStagesQuery_Node_OpenApiCollectionVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -103970,6 +103019,11 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -103977,13 +103031,27 @@ public ListStagesQuery_Node_OpenApiCollectionVersion() // 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 + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 { - public ListStagesQuery_Node_Organization() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Organization? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -104000,7 +103068,7 @@ public ListStagesQuery_Node_Organization() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104020,7 +103088,7 @@ public ListStagesQuery_Node_Organization() return false; } - return Equals((ListStagesQuery_Node_Organization)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -104028,6 +103096,11 @@ public ListStagesQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -104035,13 +103108,23 @@ public ListStagesQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_OrganizationMember : global::System.IEquatable, IListStagesQuery_Node_OrganizationMember + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded { - public ListStagesQuery_Node_OrganizationMember() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_OrganizationMember? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -104058,7 +103141,7 @@ public ListStagesQuery_Node_OrganizationMember() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104078,7 +103161,7 @@ public ListStagesQuery_Node_OrganizationMember() return false; } - return Equals((ListStagesQuery_Node_OrganizationMember)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -104086,6 +103169,9 @@ public ListStagesQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -104093,13 +103179,23 @@ public ListStagesQuery_Node_OrganizationMember() // 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 + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved { - public ListStagesQuery_Node_SchemaChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_SchemaChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -104116,7 +103212,7 @@ public ListStagesQuery_Node_SchemaChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104136,7 +103232,7 @@ public ListStagesQuery_Node_SchemaChangeLog() return false; } - return Equals((ListStagesQuery_Node_SchemaChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -104144,6 +103240,9 @@ public ListStagesQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -104151,13 +103250,27 @@ public ListStagesQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_SchemaDeployment : global::System.IEquatable, IListStagesQuery_Node_SchemaDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged { - public ListStagesQuery_Node_SchemaDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_SchemaDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -104174,7 +103287,7 @@ public ListStagesQuery_Node_SchemaDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104194,7 +103307,7 @@ public ListStagesQuery_Node_SchemaDeployment() return false; } - return Equals((ListStagesQuery_Node_SchemaDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -104202,6 +103315,15 @@ public ListStagesQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -104209,13 +103331,23 @@ public ListStagesQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Stage : global::System.IEquatable, IListStagesQuery_Node_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded { - public ListStagesQuery_Node_Stage() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stage? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -104232,7 +103364,7 @@ public ListStagesQuery_Node_Stage() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104252,7 +103384,7 @@ public ListStagesQuery_Node_Stage() return false; } - return Equals((ListStagesQuery_Node_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -104260,6 +103392,9 @@ public ListStagesQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -104267,13 +103402,23 @@ public ListStagesQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_User : global::System.IEquatable, IListStagesQuery_Node_User + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved { - public ListStagesQuery_Node_User() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_User? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -104290,7 +103435,7 @@ public ListStagesQuery_Node_User() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104310,7 +103455,7 @@ public ListStagesQuery_Node_User() return false; } - return Equals((ListStagesQuery_Node_User)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -104318,6 +103463,9 @@ public ListStagesQuery_Node_User() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -104325,13 +103473,25 @@ public ListStagesQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Workspace : global::System.IEquatable, IListStagesQuery_Node_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 { - public ListStagesQuery_Node_Workspace() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Workspace? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -104348,7 +103508,7 @@ public ListStagesQuery_Node_Workspace() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104368,7 +103528,7 @@ public ListStagesQuery_Node_Workspace() return false; } - return Equals((ListStagesQuery_Node_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -104376,6 +103536,18 @@ public ListStagesQuery_Node_Workspace() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -104383,13 +103555,27 @@ public ListStagesQuery_Node_Workspace() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_WorkspaceDocument : global::System.IEquatable, IListStagesQuery_Node_WorkspaceDocument + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 { - public ListStagesQuery_Node_WorkspaceDocument() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_WorkspaceDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -104406,7 +103592,7 @@ public ListStagesQuery_Node_WorkspaceDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104426,7 +103612,7 @@ public ListStagesQuery_Node_WorkspaceDocument() return false; } - return Equals((ListStagesQuery_Node_WorkspaceDocument)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -104434,6 +103620,11 @@ public ListStagesQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -104441,22 +103632,27 @@ public ListStagesQuery_Node_WorkspaceDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Stages_Stage : global::System.IEquatable, IListStagesQuery_Node_Stages_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 { - public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::System.String name, global::System.String displayName, global::System.Collections.Generic.IReadOnlyList conditions) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Id = id; - Name = name; - DisplayName = displayName; - Conditions = conditions; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.String DisplayName { get; } - public global::System.Collections.Generic.IReadOnlyList Conditions { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Stage? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -104473,7 +103669,7 @@ public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::Syste return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && DisplayName.Equals(other.DisplayName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104493,7 +103689,7 @@ public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::Syste return false; } - return Equals((ListStagesQuery_Node_Stages_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -104501,14 +103697,11 @@ public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::Syste unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * DisplayName.GetHashCode(); - foreach (var Conditions_elm in Conditions) - { - hash ^= 397 * Conditions_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -104516,16 +103709,23 @@ public ListStagesQuery_Node_Stages_Stage(global::System.String id, global::Syste // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Stages_Conditions_AfterStageCondition : global::System.IEquatable, IListStagesQuery_Node_Stages_Conditions_AfterStageCondition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 { - public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? afterStage) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - AfterStage = afterStage; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? AfterStage { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Conditions_AfterStageCondition? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -104542,7 +103742,7 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::Chilli return false; } - return (((AfterStage is null && other.AfterStage is null) || AfterStage != null && AfterStage.Equals(other.AfterStage))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104562,7 +103762,7 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::Chilli return false; } - return Equals((ListStagesQuery_Node_Stages_Conditions_AfterStageCondition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -104570,11 +103770,9 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::Chilli unchecked { int hash = 5; - if (AfterStage != null) - { - hash ^= 397 * AfterStage.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -104582,16 +103780,23 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStageCondition(global::Chilli // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage : global::System.IEquatable, IListStagesQuery_Node_Stages_Conditions_AfterStage_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 { - public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.String name) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Name = name; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -104608,7 +103813,7 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.St return false; } - return (Name.Equals(other.Name)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104628,7 +103833,7 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.St return false; } - return Equals((ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -104636,327 +103841,116 @@ public ListStagesQuery_Node_Stages_Conditions_AfterStage_Stage(global::System.St unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQueryResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 { + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; + } + /// - /// Fetches an object given its ID. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Api : IListStagesQuery_Node - { - public global::System.Collections.Generic.IReadOnlyList Stages { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_ApiDocument : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_ApiKey : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Client : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_ClientChangeLog : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_ClientDeployment : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_ClientVersion : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_CoordinateClientUsageMetrics : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Environment : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_FusionConfigurationChangeLog : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_FusionConfigurationDeployment : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLDirectiveArgumentDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLDirectiveDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLEnumTypeDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLEnumValueDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLInputObjectFieldDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLInputObjectTypeDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLInterfaceFieldDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLInterfaceTypeDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLObjectFieldDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLScalarTypeDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_GraphQLUnionTypeDefinition : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Group : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_McpFeatureCollection : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_McpFeatureCollectionChangeLog : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_McpFeatureCollectionDeployment : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_McpFeatureCollectionVersion : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_OpenApiCollection : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_OpenApiCollectionChangeLog : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_OpenApiCollectionDeployment : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_OpenApiCollectionVersion : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Organization : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_OrganizationMember : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_SchemaChangeLog : IListStagesQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_SchemaDeployment : IListStagesQuery_Node - { - } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stage : IListStagesQuery_Node - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_User : IListStagesQuery_Node - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Workspace : IListStagesQuery_Node - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_WorkspaceDocument : IListStagesQuery_Node - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages : IStageDetailPrompt_Stage - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages_Stage : IListStagesQuery_Node_Stages - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages_Conditions : IStageCondition - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStageCondition : IListStagesQuery_Node_Stages_Conditions, IAfterStageCondition - { - } + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStage - { - public global::System.String Name { get; } - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQuery_Node_Stages_Conditions_AfterStage_Stage : IListStagesQuery_Node_Stages_Conditions_AfterStage - { + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationResult : global::System.IEquatable, ICreateWorkspaceCommandMutationResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 { - public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace createWorkspace) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - CreateWorkspace = createWorkspace; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace CreateWorkspace { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutationResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -104973,7 +103967,7 @@ public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLin return false; } - return (CreateWorkspace.Equals(other.CreateWorkspace)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -104993,7 +103987,7 @@ public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLin return false; } - return Equals((CreateWorkspaceCommandMutationResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -105001,7 +103995,18 @@ public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLin unchecked { int hash = 5; - hash ^= 397 * CreateWorkspace.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -105009,18 +104014,25 @@ public CreateWorkspaceCommandMutationResult(global::ChilliCream.Nitro.CommandLin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 { - public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? workspace, global::System.Collections.Generic.IReadOnlyList? errors) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Workspace = workspace; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? Workspace { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -105037,7 +104049,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(glo return false; } - return (((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105057,7 +104069,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(glo return false; } - return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -105065,17 +104077,16 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(glo unchecked { int hash = 5; - if (Workspace != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Workspace.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - if (Errors != null) + if (New != null) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * New.GetHashCode(); } return hash; @@ -105085,20 +104096,23 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(glo // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded { - public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Id = id; - Name = name; - Personal = personal; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -105115,7 +104129,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105135,7 +104149,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global return false; } - return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -105143,9 +104157,9 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Personal.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -105153,16 +104167,23 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(global // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved { - public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation(global::System.String message) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Message = message; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -105179,7 +104200,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperati return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105199,7 +104220,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperati return false; } - return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -105207,7 +104228,9 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperati unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -105215,16 +104238,18 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperati // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError : global::System.IEquatable, ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(global::System.String message) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { - Message = message; + Id = id; + Name = name; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -105241,7 +104266,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(glo return false; } - return (Message.Equals(other.Message)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105261,7 +104286,7 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(glo return false; } - return Equals((CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -105269,86 +104294,27 @@ public CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(glo unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutationResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace CreateWorkspace { get; } - } + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + { + Errors = errors; + Name = name; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? Workspace { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload : ICreateWorkspaceCommandMutation_CreateWorkspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IWorkspaceDetailPrompt_Workspace - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace : IWorkspaceDetailPrompt_Workspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace : ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation : ICreateWorkspaceCommandMutation_CreateWorkspace_Errors - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError : ICreateWorkspaceCommandMutation_CreateWorkspace_Errors - { - public global::System.String Message { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryResult : global::System.IEquatable, IListWorkspaceCommandQueryResult - { - public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? me) - { - Me = me; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? Me { get; } - - public virtual global::System.Boolean Equals(ListWorkspaceCommandQueryResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -105365,7 +104331,7 @@ public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105385,7 +104351,7 @@ public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return Equals((ListWorkspaceCommandQueryResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -105393,11 +104359,12 @@ public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli unchecked { int hash = 5; - if (Me != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Me.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -105405,16 +104372,18 @@ public ListWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQuery_Me_Viewer : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Viewer + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? workspaces) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - Workspaces = workspaces; + Errors = errors; + Name = name; } - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? Workspaces { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Viewer? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -105431,7 +104400,7 @@ public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine return false; } - return (((Workspaces is null && other.Workspaces is null) || Workspaces != null && Workspaces.Equals(other.Workspaces))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105451,7 +104420,7 @@ public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine return false; } - return Equals((ListWorkspaceCommandQuery_Me_Viewer)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -105459,39 +104428,31 @@ public ListWorkspaceCommandQuery_Me_Viewer(global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - if (Workspaces != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Workspaces.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection { - public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo pageInfo) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - Edges = edges; - PageInfo = pageInfo; + Id = id; + Name = name; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo PageInfo { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -105508,7 +104469,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::Syst return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105528,7 +104489,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::Syst return false; } - return Equals((ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -105536,43 +104497,29 @@ public ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(global::Syst unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node node) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { - Cursor = cursor; - Node = node; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node Node { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } - public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -105589,7 +104536,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::Syst return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105609,7 +104556,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::Syst return false; } - return Equals((ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -105617,46 +104564,32 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(global::Syst unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + Errors = errors; + Name = name; } - /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. - /// - public global::System.String? StartCursor { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -105673,7 +104606,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System. return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105693,7 +104626,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System. return false; } - return Equals((ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -105701,18 +104634,12 @@ public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System. unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * StartCursor.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -105720,20 +104647,22 @@ public ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace : global::System.IEquatable, IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError { - public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - Id = id; - Name = name; - Personal = personal; + Message = message; + Code = code; + Path = path; + Locations = locations; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -105750,7 +104679,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::Syst return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105770,7 +104699,7 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::Syst return false; } - return Equals((ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -105778,143 +104707,53 @@ public ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(global::Syst unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Personal.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? Me { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me - { - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? Workspaces { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Viewer : IListWorkspaceCommandQuery_Me - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection : IListWorkspaceCommandQuery_Me_Workspaces - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommand_WorkspaceEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges : IListWorkspaceCommand_WorkspaceEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge : IListWorkspaceCommandQuery_Me_Workspaces_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo : IListWorkspaceCommandQuery_Me_Workspaces_PageInfo - { - } + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommand_Workspace : IWorkspaceDetailPrompt_Workspace - { - } + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node : IListWorkspaceCommand_Workspace - { - } + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace : IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node - { + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded { - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? me) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - Me = me; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? Me { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -105931,7 +104770,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCrea return false; } - return (((Me is null && other.Me is null) || Me != null && Me.Equals(other.Me))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -105951,7 +104790,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCrea return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -105959,11 +104798,11 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCrea unchecked { int hash = 5; - if (Me != null) - { - hash ^= 397 * Me.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -105971,16 +104810,27 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(global::ChilliCrea // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged { - public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? workspaces) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { - Workspaces = workspaces; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? Workspaces { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -105997,7 +104847,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::Chilli return false; } - return (((Workspaces is null && other.Workspaces is null) || Workspaces != null && Workspaces.Equals(other.Workspaces))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106017,7 +104867,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::Chilli return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -106025,9 +104875,13 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::Chilli unchecked { int hash = 5; - if (Workspaces != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Workspaces.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -106036,28 +104890,28 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(global::Chilli } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved { - public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo pageInfo) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -106074,7 +104928,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Workspaces return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106094,7 +104948,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Workspaces return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -106102,43 +104956,37 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Workspaces unchecked { int hash = 5; - if (Edges != null) - { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } - } - - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged { - public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node node) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -106155,7 +105003,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Work return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106175,7 +105023,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Work return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -106183,46 +105031,42 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Work unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded { - public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Severity = severity; + Location = location; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -106239,7 +105083,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_P return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106259,7 +105103,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_P return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -106267,18 +105111,9 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_P unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -106286,20 +105121,23 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_P // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace : global::System.IEquatable, ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved { - public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - Id = id; - Name = name; - Personal = personal; + this.__typename = __typename; + Severity = severity; + Location = location; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -106316,7 +105154,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106336,7 +105174,7 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node return false; } - return Equals((SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -106344,140 +105182,35 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Personal.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? Me { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me - { - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? Workspaces { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_Workspace - { - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node : ISetDefaultWorkspaceCommand_Workspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace : ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryResult : global::System.IEquatable, IShowWorkspaceCommandQueryResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 { - public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? node) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Node = node; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } /// - /// Fetches an object given its ID. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQueryResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -106494,7 +105227,7 @@ public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106514,7 +105247,7 @@ public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli return false; } - return Equals((ShowWorkspaceCommandQueryResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -106522,9 +105255,16 @@ public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli unchecked { int hash = 5; - if (Node != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -106534,13 +105274,23 @@ public ShowWorkspaceCommandQueryResult(global::ChilliCream.Nitro.CommandLine.Cli // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Api : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Api + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded { - public ShowWorkspaceCommandQuery_Node_Api() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Api? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -106557,7 +105307,7 @@ public ShowWorkspaceCommandQuery_Node_Api() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106577,7 +105327,7 @@ public ShowWorkspaceCommandQuery_Node_Api() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Api)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -106585,6 +105335,9 @@ public ShowWorkspaceCommandQuery_Node_Api() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -106592,13 +105345,25 @@ public ShowWorkspaceCommandQuery_Node_Api() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_ApiDocument : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ApiDocument + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged { - public ShowWorkspaceCommandQuery_Node_ApiDocument() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ApiDocument? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -106615,7 +105380,7 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106635,7 +105400,7 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_ApiDocument)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -106643,6 +105408,14 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -106650,13 +105423,23 @@ public ShowWorkspaceCommandQuery_Node_ApiDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_ApiKey : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ApiKey + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved { - public ShowWorkspaceCommandQuery_Node_ApiKey() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ApiKey? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -106673,7 +105456,7 @@ public ShowWorkspaceCommandQuery_Node_ApiKey() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106693,7 +105476,7 @@ public ShowWorkspaceCommandQuery_Node_ApiKey() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_ApiKey)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -106701,6 +105484,9 @@ public ShowWorkspaceCommandQuery_Node_ApiKey() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -106708,13 +105494,25 @@ public ShowWorkspaceCommandQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Client : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Client + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 { - public ShowWorkspaceCommandQuery_Node_Client() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Client? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -106731,7 +105529,7 @@ public ShowWorkspaceCommandQuery_Node_Client() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106751,7 +105549,7 @@ public ShowWorkspaceCommandQuery_Node_Client() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Client)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -106759,6 +105557,18 @@ public ShowWorkspaceCommandQuery_Node_Client() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -106766,13 +105576,27 @@ public ShowWorkspaceCommandQuery_Node_Client() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_ClientChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange { - public ShowWorkspaceCommandQuery_Node_ClientChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -106789,7 +105613,7 @@ public ShowWorkspaceCommandQuery_Node_ClientChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106809,7 +105633,7 @@ public ShowWorkspaceCommandQuery_Node_ClientChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_ClientChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -106817,6 +105641,11 @@ public ShowWorkspaceCommandQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -106824,13 +105653,27 @@ public ShowWorkspaceCommandQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_ClientDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange { - public ShowWorkspaceCommandQuery_Node_ClientDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -106847,7 +105690,7 @@ public ShowWorkspaceCommandQuery_Node_ClientDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106867,7 +105710,7 @@ public ShowWorkspaceCommandQuery_Node_ClientDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_ClientDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -106875,6 +105718,11 @@ public ShowWorkspaceCommandQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -106882,13 +105730,27 @@ public ShowWorkspaceCommandQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_ClientVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_ClientVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged { - public ShowWorkspaceCommandQuery_Node_ClientVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_ClientVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -106905,7 +105767,7 @@ public ShowWorkspaceCommandQuery_Node_ClientVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106925,7 +105787,7 @@ public ShowWorkspaceCommandQuery_Node_ClientVersion() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_ClientVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -106933,6 +105795,15 @@ public ShowWorkspaceCommandQuery_Node_ClientVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -106940,13 +105811,25 @@ public ShowWorkspaceCommandQuery_Node_ClientVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 { - public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -106963,7 +105846,7 @@ public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -106983,7 +105866,7 @@ public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -106991,6 +105874,18 @@ public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -106998,13 +105893,27 @@ public ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Environment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Environment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 { - public ShowWorkspaceCommandQuery_Node_Environment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Environment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -107021,7 +105930,7 @@ public ShowWorkspaceCommandQuery_Node_Environment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107041,7 +105950,7 @@ public ShowWorkspaceCommandQuery_Node_Environment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Environment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -107049,6 +105958,11 @@ public ShowWorkspaceCommandQuery_Node_Environment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -107056,13 +105970,27 @@ public ShowWorkspaceCommandQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 { - public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -107079,7 +106007,7 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107099,7 +106027,7 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -107107,6 +106035,11 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -107114,13 +106047,23 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded { - public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -107137,7 +106080,7 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107157,7 +106100,7 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -107165,6 +106108,9 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -107172,13 +106118,23 @@ public ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved { - public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -107195,7 +106151,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107215,7 +106171,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -107223,6 +106179,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -107230,13 +106189,27 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged { - public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -107253,7 +106226,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107273,7 +106246,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -107281,6 +106254,15 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -107288,13 +106270,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded { - public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -107311,7 +106303,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107331,7 +106323,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -107339,6 +106331,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -107346,13 +106341,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved { - public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -107369,7 +106374,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107389,7 +106394,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -107397,6 +106402,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -107404,13 +106412,25 @@ public ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 { - public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -107427,7 +106447,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107447,7 +106467,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -107455,6 +106475,18 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -107462,13 +106494,27 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 { - public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -107485,7 +106531,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107505,7 +106551,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -107513,6 +106559,11 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -107520,13 +106571,27 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 { - public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -107543,7 +106608,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107563,7 +106628,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -107571,6 +106636,11 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -107578,13 +106648,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -107601,7 +106681,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107621,7 +106701,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -107629,6 +106709,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -107636,13 +106719,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -107659,7 +106752,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107679,7 +106772,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -107687,6 +106780,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -107694,13 +106790,27 @@ public ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 { - public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -107717,7 +106827,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107737,7 +106847,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -107745,6 +106855,15 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -107752,13 +106871,25 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 { - public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -107775,7 +106906,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107795,7 +106926,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -107803,6 +106934,18 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -107810,13 +106953,25 @@ public ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 { - public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -107833,7 +106988,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107853,7 +107008,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -107861,6 +107016,18 @@ public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -107868,13 +107035,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded { - public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -107891,7 +107068,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107911,7 +107088,7 @@ public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -107919,6 +107096,9 @@ public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -107926,13 +107106,23 @@ public ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Group : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Group + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved { - public ShowWorkspaceCommandQuery_Node_Group() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Group? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -107949,7 +107139,7 @@ public ShowWorkspaceCommandQuery_Node_Group() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -107969,7 +107159,7 @@ public ShowWorkspaceCommandQuery_Node_Group() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Group)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -107977,6 +107167,9 @@ public ShowWorkspaceCommandQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -107984,13 +107177,23 @@ public ShowWorkspaceCommandQuery_Node_Group() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollection : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange { - public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollection? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -108007,7 +107210,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108027,7 +107230,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -108035,6 +107238,13 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -108042,13 +107252,25 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged { - public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -108065,7 +107287,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108085,7 +107307,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -108093,6 +107315,18 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -108100,13 +107334,25 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged { - public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -108123,7 +107369,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108143,7 +107389,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -108151,6 +107397,10 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -108158,13 +107408,18 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 { - public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -108181,7 +107436,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108201,7 +107456,7 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -108209,6 +107464,12 @@ public ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -108216,13 +107477,25 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 { - public ShowWorkspaceCommandQuery_Node_OpenApiCollection() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollection? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -108239,7 +107512,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108259,7 +107532,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -108267,6 +107540,18 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108274,13 +107559,18 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -108297,7 +107587,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108317,7 +107607,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -108325,6 +107615,12 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -108332,13 +107628,25 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -108355,7 +107663,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108375,7 +107683,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -108383,6 +107691,18 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108390,13 +107710,25 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 { - public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -108413,7 +107745,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108433,7 +107765,7 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -108441,6 +107773,10 @@ public ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108448,13 +107784,27 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded { - public ShowWorkspaceCommandQuery_Node_Organization() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Organization? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -108471,7 +107821,7 @@ public ShowWorkspaceCommandQuery_Node_Organization() return false; } - return true; + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108491,7 +107841,7 @@ public ShowWorkspaceCommandQuery_Node_Organization() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Organization)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -108499,6 +107849,11 @@ public ShowWorkspaceCommandQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108506,13 +107861,27 @@ 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 OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged { - public ShowWorkspaceCommandQuery_Node_OrganizationMember() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { + Severity = severity; + Coordinate = coordinate; + Name = name; + this.__typename = __typename; + Changes = changes; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_OrganizationMember? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -108529,7 +107898,7 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() return false; } - return true; + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108549,7 +107918,7 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_OrganizationMember)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -108557,6 +107926,15 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -108564,13 +107942,27 @@ public ShowWorkspaceCommandQuery_Node_OrganizationMember() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_SchemaChangeLog : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_SchemaChangeLog + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved { - public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_SchemaChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -108587,7 +107979,7 @@ public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() return false; } - return true; + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108607,7 +107999,7 @@ public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_SchemaChangeLog)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -108615,6 +108007,11 @@ public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108622,13 +108019,18 @@ public ShowWorkspaceCommandQuery_Node_SchemaChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_SchemaDeployment : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_SchemaDeployment + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 { - public ShowWorkspaceCommandQuery_Node_SchemaDeployment() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { + Severity = severity; + DeprecationReason = deprecationReason; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_SchemaDeployment? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -108645,7 +108047,7 @@ public ShowWorkspaceCommandQuery_Node_SchemaDeployment() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108665,7 +108067,7 @@ public ShowWorkspaceCommandQuery_Node_SchemaDeployment() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_SchemaDeployment)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -108673,6 +108075,12 @@ public ShowWorkspaceCommandQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -108680,13 +108088,25 @@ public ShowWorkspaceCommandQuery_Node_SchemaDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Stage : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Stage + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 { - public ShowWorkspaceCommandQuery_Node_Stage() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Stage? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -108703,7 +108123,7 @@ public ShowWorkspaceCommandQuery_Node_Stage() return false; } - return true; + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108723,7 +108143,7 @@ public ShowWorkspaceCommandQuery_Node_Stage() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Stage)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -108731,6 +108151,18 @@ public ShowWorkspaceCommandQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108738,13 +108170,25 @@ public ShowWorkspaceCommandQuery_Node_Stage() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_User : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_User + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 { - public ShowWorkspaceCommandQuery_Node_User() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_User? other) + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -108761,7 +108205,7 @@ public ShowWorkspaceCommandQuery_Node_User() return false; } - return true; + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108781,7 +108225,7 @@ public ShowWorkspaceCommandQuery_Node_User() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_User)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -108789,6 +108233,10 @@ public ShowWorkspaceCommandQuery_Node_User() unchecked { int hash = 5; + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -108796,20 +108244,22 @@ public ShowWorkspaceCommandQuery_Node_User() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_Workspace : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global::System.String name, global::System.Boolean personal) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - Id = id; - Name = name; - Personal = personal; + Code = code; + Message = message; + Path = path; + Locations = locations; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Boolean Personal { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -108826,7 +108276,7 @@ public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::System.Object.Equals(Personal, other.Personal); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108846,7 +108296,7 @@ public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global return false; } - return Equals((ShowWorkspaceCommandQuery_Node_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -108854,9 +108304,25 @@ public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * Personal.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -108864,13 +108330,16 @@ public ShowWorkspaceCommandQuery_Node_Workspace(global::System.String id, global // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQuery_Node_WorkspaceDocument : global::System.IEquatable, IShowWorkspaceCommandQuery_Node_WorkspaceDocument + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(ShowWorkspaceCommandQuery_Node_WorkspaceDocument? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -108887,7 +108356,7 @@ public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -108907,7 +108376,7 @@ public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() return false; } - return Equals((ShowWorkspaceCommandQuery_Node_WorkspaceDocument)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -108915,288 +108384,110 @@ public ShowWorkspaceCommandQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQueryResult + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError { - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? Node { get; } - } + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + { + Code = code; + Message = message; + Path = path; + Locations = locations; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node - { - } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Api : IShowWorkspaceCommandQuery_Node - { - } + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_ApiDocument : IShowWorkspaceCommandQuery_Node - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_ApiKey : IShowWorkspaceCommandQuery_Node - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Client : IShowWorkspaceCommandQuery_Node - { - } + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_ClientChangeLog : IShowWorkspaceCommandQuery_Node - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_ClientDeployment : IShowWorkspaceCommandQuery_Node - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_ClientVersion : IShowWorkspaceCommandQuery_Node - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics : IShowWorkspaceCommandQuery_Node - { - } + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Environment : IShowWorkspaceCommandQuery_Node - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog : IShowWorkspaceCommandQuery_Node + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Group : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollection : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollection : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Organization : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_OrganizationMember : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_SchemaChangeLog : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_SchemaDeployment : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Stage : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_User : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_Workspace : IShowWorkspaceCommandQuery_Node, IWorkspaceDetailPrompt_Workspace - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQuery_Node_WorkspaceDocument : IShowWorkspaceCommandQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryResult : global::System.IEquatable, ISelectApiPromptQueryResult - { - public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? workspaceById) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - WorkspaceById = workspaceById; + Message = message; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? WorkspaceById { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQueryResult? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -109213,7 +108504,7 @@ public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109233,7 +108524,7 @@ public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I return false; } - return Equals((SelectApiPromptQueryResult)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -109241,11 +108532,7 @@ public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I unchecked { int hash = 5; - if (WorkspaceById != null) - { - hash ^= 397 * WorkspaceById.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -109253,16 +108540,18 @@ public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Workspace : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? apis) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Apis = apis; + Column = column; + Line = line; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? Apis { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -109279,7 +108568,7 @@ public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Co return false; } - return (((Apis is null && other.Apis is null) || Apis != null && Apis.Equals(other.Apis))); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109299,7 +108588,7 @@ public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Co return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -109307,39 +108596,32 @@ public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.Co unchecked { int hash = 5; - if (Apis != null) - { - hash ^= 397 * Apis.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_ApisConnection + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange { - public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo pageInfo) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + DeprecationReason = deprecationReason; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -109356,7 +108638,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Col return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109376,7 +108658,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Col return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -109384,43 +108666,39 @@ public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Col unchecked { int hash = 5; - if (Edges != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * DeprecationReason.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged { - public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node node) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -109437,7 +108715,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Str return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109457,7 +108735,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Str return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -109465,46 +108743,44 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.Str unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged { - public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -109521,7 +108797,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System. return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109541,7 +108817,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System. return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -109549,18 +108825,10 @@ public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System. unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -109568,24 +108836,18 @@ public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? workspace, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings settings) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Id = id; - Name = name; - Path = path; - Workspace = workspace; - Settings = settings; + Column = column; + Line = line; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? Workspace { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings Settings { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -109602,7 +108864,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Str return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109622,7 +108884,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Str return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -109630,19 +108892,8 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Str unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - - if (Workspace != null) - { - hash ^= 397 * Workspace.GetHashCode(); - } - - hash ^= 397 * Settings.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -109650,18 +108901,18 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.Str // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace + public partial class OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) + public OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Id = id; - Name = name; + Column = column; + Line = line; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace? other) + public virtual global::System.Boolean Equals(OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -109678,7 +108929,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(gl return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -109698,7 +108949,7 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(gl return false; } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace)obj); + return Equals((OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -109706,486 +108957,1130 @@ public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(gl unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings + public partial interface IOnSchemaVersionValidationUpdatedResult { - public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry schemaRegistry) - { - SchemaRegistry = schemaRegistry; - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } - - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate OnSchemaVersionValidationUpdate { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate + { + public global::System.String __typename { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IOperationInProgress + { + } - return (SchemaRegistry.Equals(other.SchemaRegistry)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaVersionValidationFailed + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationFailed + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISchemaVersionValidationSuccess + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, ISchemaVersionValidationSuccess + { + } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate, IValidationInProgress + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * SchemaRegistry.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IInvalidGraphQLSchemaError { - public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) - { - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; - } + } - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IMcpFeatureCollectionValidationError + { + } - public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IOpenApiCollectionValidationError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IOperationsAreNotAllowedError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IPersistedQueryValidationError + { + } - return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IProcessingTimeoutError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, ISchemaVersionChangeViolationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, ISchemaVersionSyntaxError + { + } - return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors, IUnexpectedProcessingError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes : ISchemaChangeLogEntry + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQueryResult + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IDirectiveModifiedChange { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? WorkspaceById { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IEnumModifiedChange { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? Apis { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Workspace : ISelectApiPromptQuery_WorkspaceById + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IInputObjectModifiedChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IInterfaceModifiedChange { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_ApisConnection : ISelectApiPromptQuery_WorkspaceById_Apis + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IObjectModifiedChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPrompt_ApiEdge + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IScalarModifiedChange { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges : ISelectApiPrompt_ApiEdge + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ITypeSystemMemberAddedChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge : ISelectApiPromptQuery_WorkspaceById_Apis_Edges + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ISchemaChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo : IPageInfo + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, ITypeSystemMemberRemovedChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo : ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes, IUnionModifiedChange { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node : ISelectApiPrompt_Api + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors { + public global::System.String Message { get; } + public global::System.String? Code { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors_GraphQLSchemaError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Errors { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections { - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollectionValidationCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry SchemaRegistry { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollectionValidationCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client { - public global::System.Boolean TreatDangerousAsBreaking { get; } - public global::System.Boolean AllowBreakingSchemaChanges { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client_Client : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Client { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryResult : global::System.IEquatable, IPageClientVersionDetailQueryResult + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries { - public PageClientVersionDetailQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? node) - { - Node = node; - } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? Node { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries + { + } - public virtual global::System.Boolean Equals(PageClientVersionDetailQueryResult? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes : ISchemaChangeLogEntry + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_DirectiveModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IDirectiveModifiedChange + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_EnumModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IEnumModifiedChange + { + } - return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InputObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IInputObjectModifiedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_InterfaceModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IInterfaceModifiedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ObjectModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IObjectModifiedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_ScalarModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IScalarModifiedChange + { + } - return Equals((PageClientVersionDetailQueryResult)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ITypeSystemMemberAddedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (Node != null) - { - hash ^= 397 * Node.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ISchemaChange + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_TypeSystemMemberRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, ITypeSystemMemberRemovedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Api : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Api + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_UnionModifiedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes, IUnionModifiedChange { - public PageClientVersionDetailQuery_Node_Api() - { - } + } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Api? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentAdded + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentChanged + { + } - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IArgumentRemoved + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDescriptionChanged + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDirectiveLocationAdded + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes, IDirectiveLocationRemoved + { + } - return Equals((PageClientVersionDetailQuery_Node_Api)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1 + { + public global::System.String __typename { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IDescriptionChanged + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_ApiDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiDocument + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueAdded { - public PageClientVersionDetailQuery_Node_ApiDocument() - { - } + } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ApiDocument? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueChanged + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_EnumValueRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_1, IEnumValueRemoved + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2 + { + public global::System.String __typename { get; } + } - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IDescriptionChanged + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IFieldAddedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IFieldRemovedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_2, IInputFieldChanged + { + } - return Equals((PageClientVersionDetailQuery_Node_ApiDocument)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3 + { + public global::System.String __typename { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IDescriptionChanged + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_ApiKey : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiKey + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IFieldAddedChange { - public PageClientVersionDetailQuery_Node_ApiKey() - { - } + } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ApiKey? other) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_McpFeatureCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_OpenApiCollection + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + { + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DirectiveLocationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_EnumValueRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_PossibleTypeRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_4 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldAddedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_FieldRemovedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_OutputFieldChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_5 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_DescriptionChanged_6 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_UnionMemberRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_1 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentAdded : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_ArgumentRemoved : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DeprecatedChange_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_DescriptionChanged_3 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_TypeChanged_2 : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Queries_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DeprecatedChange : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_DescriptionChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes_TypeChanged : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_1 + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_Errors_Locations_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CancelFusionConfigurationPublishResult : global::System.IEquatable, ICancelFusionConfigurationPublishResult + { + public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition cancelFusionConfigurationComposition) + { + CancelFusionConfigurationComposition = cancelFusionConfigurationComposition; + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition CancelFusionConfigurationComposition { get; } + + public virtual global::System.Boolean Equals(CancelFusionConfigurationPublishResult? other) { if (ReferenceEquals(null, other)) { @@ -110202,7 +110097,7 @@ public PageClientVersionDetailQuery_Node_ApiKey() return false; } - return true; + return (CancelFusionConfigurationComposition.Equals(other.CancelFusionConfigurationComposition)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110222,7 +110117,7 @@ public PageClientVersionDetailQuery_Node_ApiKey() return false; } - return Equals((PageClientVersionDetailQuery_Node_ApiKey)obj); + return Equals((CancelFusionConfigurationPublishResult)obj); } public override global::System.Int32 GetHashCode() @@ -110230,6 +110125,7 @@ public PageClientVersionDetailQuery_Node_ApiKey() unchecked { int hash = 5; + hash ^= 397 * CancelFusionConfigurationComposition.GetHashCode(); return hash; } } @@ -110237,16 +110133,16 @@ public PageClientVersionDetailQuery_Node_ApiKey() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Client : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Client + public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload { - public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? versions) + public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) { - Versions = versions; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? Versions { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Client? other) + public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload? other) { if (ReferenceEquals(null, other)) { @@ -110263,7 +110159,7 @@ public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.Comman return false; } - return (((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110283,7 +110179,7 @@ public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.Comman return false; } - return Equals((PageClientVersionDetailQuery_Node_Client)obj); + return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -110291,9 +110187,12 @@ public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.Comman unchecked { int hash = 5; - if (Versions != null) + if (Errors != null) { - hash ^= 397 * Versions.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } } return hash; @@ -110303,13 +110202,21 @@ public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.Comman // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_ClientChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientChangeLog + public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation { - public PageClientVersionDetailQuery_Node_ClientChangeLog() + public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -110326,7 +110233,7 @@ public PageClientVersionDetailQuery_Node_ClientChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110346,7 +110253,7 @@ public PageClientVersionDetailQuery_Node_ClientChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_ClientChangeLog)obj); + return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -110354,6 +110261,8 @@ public PageClientVersionDetailQuery_Node_ClientChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110361,13 +110270,21 @@ public PageClientVersionDetailQuery_Node_ClientChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_ClientDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientDeployment + public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError { - public PageClientVersionDetailQuery_Node_ClientDeployment() + public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -110384,7 +110301,7 @@ public PageClientVersionDetailQuery_Node_ClientDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110404,7 +110321,7 @@ public PageClientVersionDetailQuery_Node_ClientDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_ClientDeployment)obj); + return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -110412,6 +110329,8 @@ public PageClientVersionDetailQuery_Node_ClientDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110419,13 +110338,21 @@ public PageClientVersionDetailQuery_Node_ClientDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_ClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientVersion + public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError { - public PageClientVersionDetailQuery_Node_ClientVersion() + public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientVersion? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) { if (ReferenceEquals(null, other)) { @@ -110442,7 +110369,7 @@ public PageClientVersionDetailQuery_Node_ClientVersion() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110462,7 +110389,7 @@ public PageClientVersionDetailQuery_Node_ClientVersion() return false; } - return Equals((PageClientVersionDetailQuery_Node_ClientVersion)obj); + return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); } public override global::System.Int32 GetHashCode() @@ -110470,20 +110397,89 @@ public PageClientVersionDetailQuery_Node_ClientVersion() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICancelFusionConfigurationPublishResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition CancelFusionConfigurationComposition { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition + { + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFusionConfigurationRequestNotFoundError : 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 ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IInvalidProcessingStateTransitionError : 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 ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IPageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics + public partial class CommitFusionConfigurationPublishResult : global::System.IEquatable, ICommitFusionConfigurationPublishResult { - public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() + public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish commitFusionConfigurationPublish) { + CommitFusionConfigurationPublish = commitFusionConfigurationPublish; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics? other) + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish CommitFusionConfigurationPublish { get; } + + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublishResult? other) { if (ReferenceEquals(null, other)) { @@ -110500,7 +110496,7 @@ public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() return false; } - return true; + return (CommitFusionConfigurationPublish.Equals(other.CommitFusionConfigurationPublish)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110520,7 +110516,7 @@ public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() return false; } - return Equals((PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics)obj); + return Equals((CommitFusionConfigurationPublishResult)obj); } public override global::System.Int32 GetHashCode() @@ -110528,6 +110524,7 @@ public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() unchecked { int hash = 5; + hash ^= 397 * CommitFusionConfigurationPublish.GetHashCode(); return hash; } } @@ -110535,13 +110532,16 @@ public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Environment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Environment + public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload { - public PageClientVersionDetailQuery_Node_Environment() + public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload(global::System.Collections.Generic.IReadOnlyList? errors) { + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Environment? other) + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload? other) { if (ReferenceEquals(null, other)) { @@ -110558,7 +110558,7 @@ public PageClientVersionDetailQuery_Node_Environment() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110578,7 +110578,7 @@ public PageClientVersionDetailQuery_Node_Environment() return false; } - return Equals((PageClientVersionDetailQuery_Node_Environment)obj); + return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload)obj); } public override global::System.Int32 GetHashCode() @@ -110586,6 +110586,14 @@ public PageClientVersionDetailQuery_Node_Environment() unchecked { int hash = 5; + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -110593,13 +110601,21 @@ public PageClientVersionDetailQuery_Node_Environment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_FusionConfigurationChangeLog + public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation { - public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() + public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -110616,7 +110632,7 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110636,7 +110652,7 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog)obj); + return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -110644,6 +110660,8 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110651,13 +110669,21 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_FusionConfigurationDeployment + public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError { - public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() + public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_FusionConfigurationDeployment? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -110674,7 +110700,7 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110694,7 +110720,7 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_FusionConfigurationDeployment)obj); + return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -110702,6 +110728,8 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110709,13 +110737,21 @@ public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition + public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError { - public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() + public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError? other) { if (ReferenceEquals(null, other)) { @@ -110732,7 +110768,7 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110752,7 +110788,7 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition)obj); + return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError)obj); } public override global::System.Int32 GetHashCode() @@ -110760,20 +110796,69 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublishResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish CommitFusionConfigurationPublish { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish + { + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IFusionConfigurationRequestNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IInvalidProcessingStateTransitionError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition + public partial class StartFusionConfigurationPublishResult : global::System.IEquatable, IStartFusionConfigurationPublishResult { - public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() + public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition startFusionConfigurationComposition) { + StartFusionConfigurationComposition = startFusionConfigurationComposition; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition StartFusionConfigurationComposition { get; } + + public virtual global::System.Boolean Equals(StartFusionConfigurationPublishResult? other) { if (ReferenceEquals(null, other)) { @@ -110790,7 +110875,7 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() return false; } - return true; + return (StartFusionConfigurationComposition.Equals(other.StartFusionConfigurationComposition)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110810,7 +110895,7 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition)obj); + return Equals((StartFusionConfigurationPublishResult)obj); } public override global::System.Int32 GetHashCode() @@ -110818,6 +110903,7 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() unchecked { int hash = 5; + hash ^= 397 * StartFusionConfigurationComposition.GetHashCode(); return hash; } } @@ -110825,13 +110911,16 @@ public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition + public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload { - public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() + public StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) { + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition? other) + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload? other) { if (ReferenceEquals(null, other)) { @@ -110848,7 +110937,7 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() return false; } - return true; + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110868,7 +110957,7 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition)obj); + return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -110876,6 +110965,14 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() unchecked { int hash = 5; + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -110883,13 +110980,21 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition + public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation { - public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() + public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -110906,7 +111011,7 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110926,7 +111031,7 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition)obj); + return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -110934,6 +111039,8 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110941,17 +111048,25 @@ public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition + public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError { - public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() + public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition? other) - { - if (ReferenceEquals(null, other)) - { - return false; + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) + { + if (ReferenceEquals(null, other)) + { + return false; } if (ReferenceEquals(this, other)) @@ -110964,7 +111079,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -110984,7 +111099,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition)obj); + return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -110992,6 +111107,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -110999,13 +111116,21 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition + public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError { - public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() + public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) { if (ReferenceEquals(null, other)) { @@ -111022,7 +111147,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111042,7 +111167,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition)obj); + return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); } public override global::System.Int32 GetHashCode() @@ -111050,20 +111175,69 @@ public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublishResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition StartFusionConfigurationComposition { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition + { + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload : IStartFusionConfigurationPublish_StartFusionConfigurationComposition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition + public partial class BeginFusionConfigurationPublishResult : global::System.IEquatable, IBeginFusionConfigurationPublishResult { - public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition() + public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish beginFusionConfigurationPublish) { + BeginFusionConfigurationPublish = beginFusionConfigurationPublish; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish BeginFusionConfigurationPublish { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublishResult? other) { if (ReferenceEquals(null, other)) { @@ -111080,7 +111254,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition return false; } - return true; + return (BeginFusionConfigurationPublish.Equals(other.BeginFusionConfigurationPublish)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111100,7 +111274,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); + return Equals((BeginFusionConfigurationPublishResult)obj); } public override global::System.Int32 GetHashCode() @@ -111108,6 +111282,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition unchecked { int hash = 5; + hash ^= 397 * BeginFusionConfigurationPublish.GetHashCode(); return hash; } } @@ -111115,13 +111290,18 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload { - public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload(global::System.String? requestId, global::System.Collections.Generic.IReadOnlyList? errors) { + RequestId = requestId; + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition? other) + public global::System.String? RequestId { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload? other) { if (ReferenceEquals(null, other)) { @@ -111138,7 +111318,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return true; + return (((RequestId is null && other.RequestId is null) || RequestId != null && RequestId.Equals(other.RequestId))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111158,7 +111338,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload)obj); } public override global::System.Int32 GetHashCode() @@ -111166,6 +111346,19 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() unchecked { int hash = 5; + if (RequestId != null) + { + hash ^= 397 * RequestId.GetHashCode(); + } + + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -111173,13 +111366,21 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation { - public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -111196,7 +111397,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111216,7 +111417,7 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -111224,6 +111425,8 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -111231,13 +111434,23 @@ public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError { - public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) { + this.__typename = __typename; + Message = message; + ApiId = apiId; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String ApiId { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -111254,7 +111467,7 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111274,7 +111487,7 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -111282,6 +111495,9 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); return hash; } } @@ -111289,13 +111505,23 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError { - public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) { + this.__typename = __typename; + Message = message; + Name = name; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -111312,7 +111538,7 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111332,7 +111558,7 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -111340,6 +111566,9 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -111347,13 +111576,21 @@ public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError { - public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError? other) { if (ReferenceEquals(null, other)) { @@ -111370,7 +111607,7 @@ public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111390,7 +111627,7 @@ public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError)obj); } public override global::System.Int32 GetHashCode() @@ -111398,6 +111635,8 @@ public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -111405,13 +111644,21 @@ public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError { - public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) { + this.__typename = __typename; + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition? other) + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError? other) { if (ReferenceEquals(null, other)) { @@ -111428,7 +111675,7 @@ public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() return false; } - return true; + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111448,7 +111695,7 @@ public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() return false; } - return Equals((PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError)obj); } public override global::System.Int32 GetHashCode() @@ -111456,6 +111703,8 @@ public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -111463,13 +111712,16 @@ public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Group : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Group + public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError { - public PageClientVersionDetailQuery_Node_Group() + public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Group? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError? other) { if (ReferenceEquals(null, other)) { @@ -111486,7 +111738,7 @@ public PageClientVersionDetailQuery_Node_Group() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111506,7 +111758,7 @@ public PageClientVersionDetailQuery_Node_Group() return false; } - return Equals((PageClientVersionDetailQuery_Node_Group)obj); + return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError)obj); } public override global::System.Int32 GetHashCode() @@ -111514,20 +111766,97 @@ public PageClientVersionDetailQuery_Node_Group() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublishResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish BeginFusionConfigurationPublish { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish + { + public global::System.String? RequestId { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IApiNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IStageNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISubgraphInvalidError : 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 IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, ISubgraphInvalidError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IInvalidProcessingStateTransitionError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_McpFeatureCollection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollection + public partial class OnFusionConfigurationPublishingTaskChangedResult : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChangedResult { - public PageClientVersionDetailQuery_Node_McpFeatureCollection() + public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged onFusionConfigurationPublishingTaskChanged) { + OnFusionConfigurationPublishingTaskChanged = onFusionConfigurationPublishingTaskChanged; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollection? other) + public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged OnFusionConfigurationPublishingTaskChanged { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChangedResult? other) { if (ReferenceEquals(null, other)) { @@ -111544,7 +111873,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollection() return false; } - return true; + return (OnFusionConfigurationPublishingTaskChanged.Equals(other.OnFusionConfigurationPublishingTaskChanged)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111564,7 +111893,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollection() return false; } - return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChangedResult)obj); } public override global::System.Int32 GetHashCode() @@ -111572,6 +111901,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollection() unchecked { int hash = 5; + hash ^= 397 * OnFusionConfigurationPublishingTaskChanged.GetHashCode(); return hash; } } @@ -111579,13 +111909,28 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed { - public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) { + State = state; + this.__typename = __typename; + Failed = failed; + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Failed { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed? other) { if (ReferenceEquals(null, other)) { @@ -111602,7 +111947,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Failed.Equals(other.Failed) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111622,7 +111967,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed)obj); } public override global::System.Int32 GetHashCode() @@ -111630,6 +111975,14 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Failed.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -111637,13 +111990,26 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess { - public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success) { + State = state; + this.__typename = __typename; + Success = success; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Success { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess? other) { if (ReferenceEquals(null, other)) { @@ -111660,7 +112026,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Success.Equals(other.Success); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111680,7 +112046,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -111688,6 +112054,9 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Success.GetHashCode(); return hash; } } @@ -111695,13 +112064,28 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed { - public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) { + State = state; + this.__typename = __typename; + Failed = failed; + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Failed { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -111718,7 +112102,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Failed.Equals(other.Failed) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111738,7 +112122,7 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() return false; } - return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -111746,6 +112130,14 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Failed.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -111753,13 +112145,28 @@ public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_OpenApiCollection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess { - public PageClientVersionDetailQuery_Node_OpenApiCollection() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success, global::System.Collections.Generic.IReadOnlyList changes) { + State = state; + this.__typename = __typename; + Success = success; + Changes = changes; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollection? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Success { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess? other) { if (ReferenceEquals(null, other)) { @@ -111776,7 +112183,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollection() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Success.Equals(other.Success) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111796,7 +112203,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollection() return false; } - return Equals((PageClientVersionDetailQuery_Node_OpenApiCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess)obj); } public override global::System.Int32 GetHashCode() @@ -111804,6 +112211,14 @@ public PageClientVersionDetailQuery_Node_OpenApiCollection() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Success.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -111811,13 +112226,21 @@ public PageClientVersionDetailQuery_Node_OpenApiCollection() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress { - public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) { + State = state; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -111834,7 +112257,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111854,7 +112277,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -111862,6 +112285,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -111869,13 +112294,21 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved { - public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) { + State = state; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved? other) { if (ReferenceEquals(null, other)) { @@ -111892,7 +112325,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111912,7 +112345,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved)obj); } public override global::System.Int32 GetHashCode() @@ -111920,6 +112353,8 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -111927,13 +112362,28 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued { - public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) { + State = state; + this.__typename = __typename; + Queued = queued; + QueuePosition = queuePosition; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionVersion? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Queued { get; } + public global::System.Int32 QueuePosition { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued? other) { if (ReferenceEquals(null, other)) { @@ -111950,7 +112400,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -111970,7 +112420,7 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() return false; } - return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued)obj); } public override global::System.Int32 GetHashCode() @@ -111978,6 +112428,10 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Queued.GetHashCode(); + hash ^= 397 * QueuePosition.GetHashCode(); return hash; } } @@ -111985,13 +112439,26 @@ public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() // 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 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady { - public PageClientVersionDetailQuery_Node_Organization() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String ready) { + State = state; + this.__typename = __typename; + Ready = ready; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Organization? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Ready { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady? other) { if (ReferenceEquals(null, other)) { @@ -112008,7 +112475,7 @@ public PageClientVersionDetailQuery_Node_Organization() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Ready.Equals(other.Ready); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112028,7 +112495,7 @@ public PageClientVersionDetailQuery_Node_Organization() return false; } - return Equals((PageClientVersionDetailQuery_Node_Organization)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady)obj); } public override global::System.Int32 GetHashCode() @@ -112036,6 +112503,9 @@ public PageClientVersionDetailQuery_Node_Organization() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Ready.GetHashCode(); return hash; } } @@ -112043,13 +112513,21 @@ public PageClientVersionDetailQuery_Node_Organization() // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_OrganizationMember : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OrganizationMember + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress { - public PageClientVersionDetailQuery_Node_OrganizationMember() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) { + State = state; + this.__typename = __typename; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OrganizationMember? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress? other) { if (ReferenceEquals(null, other)) { @@ -112066,7 +112544,7 @@ public PageClientVersionDetailQuery_Node_OrganizationMember() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112086,7 +112564,7 @@ public PageClientVersionDetailQuery_Node_OrganizationMember() return false; } - return Equals((PageClientVersionDetailQuery_Node_OrganizationMember)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress)obj); } public override global::System.Int32 GetHashCode() @@ -112094,6 +112572,8 @@ public PageClientVersionDetailQuery_Node_OrganizationMember() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -112101,13 +112581,23 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval { - public PageClientVersionDetailQuery_Node_SchemaChangeLog() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) { + State = state; + this.__typename = __typename; + Deployment = deployment; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaChangeLog? other) + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval? other) { if (ReferenceEquals(null, other)) { @@ -112124,7 +112614,7 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() return false; } - return true; + return (State.Equals(other.State)) && __typename.Equals(other.__typename) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112144,7 +112634,7 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() return false; } - return Equals((PageClientVersionDetailQuery_Node_SchemaChangeLog)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval)obj); } public override global::System.Int32 GetHashCode() @@ -112152,6 +112642,13 @@ public PageClientVersionDetailQuery_Node_SchemaChangeLog() unchecked { int hash = 5; + hash ^= 397 * State.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + if (Deployment != null) + { + hash ^= 397 * Deployment.GetHashCode(); + } + return hash; } } @@ -112159,13 +112656,16 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError { - public PageClientVersionDetailQuery_Node_SchemaDeployment() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaDeployment? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError? other) { if (ReferenceEquals(null, other)) { @@ -112182,7 +112682,7 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112202,7 +112702,7 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() return false; } - return Equals((PageClientVersionDetailQuery_Node_SchemaDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError)obj); } public override global::System.Int32 GetHashCode() @@ -112210,6 +112710,7 @@ public PageClientVersionDetailQuery_Node_SchemaDeployment() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -112217,13 +112718,23 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError { - public PageClientVersionDetailQuery_Node_Stage() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError(global::System.String message, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList errors) { + Message = message; + this.__typename = __typename; + Errors = errors; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Stage? other) + public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -112240,7 +112751,7 @@ public PageClientVersionDetailQuery_Node_Stage() return false; } - return true; + return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112260,7 +112771,7 @@ public PageClientVersionDetailQuery_Node_Stage() return false; } - return Equals((PageClientVersionDetailQuery_Node_Stage)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -112268,6 +112779,13 @@ public PageClientVersionDetailQuery_Node_Stage() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -112275,13 +112793,16 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError { - public PageClientVersionDetailQuery_Node_User() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_User? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -112298,7 +112819,7 @@ public PageClientVersionDetailQuery_Node_User() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112318,7 +112839,7 @@ public PageClientVersionDetailQuery_Node_User() return false; } - return Equals((PageClientVersionDetailQuery_Node_User)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -112326,6 +112847,7 @@ public PageClientVersionDetailQuery_Node_User() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -112333,13 +112855,16 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError { - public PageClientVersionDetailQuery_Node_Workspace() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Workspace? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError? other) { if (ReferenceEquals(null, other)) { @@ -112356,7 +112881,7 @@ public PageClientVersionDetailQuery_Node_Workspace() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112376,7 +112901,7 @@ public PageClientVersionDetailQuery_Node_Workspace() return false; } - return Equals((PageClientVersionDetailQuery_Node_Workspace)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError)obj); } public override global::System.Int32 GetHashCode() @@ -112384,6 +112909,7 @@ public PageClientVersionDetailQuery_Node_Workspace() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -112391,13 +112917,16 @@ 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 OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError { - public PageClientVersionDetailQuery_Node_WorkspaceDocument() + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError(global::System.String message) { + Message = message; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_WorkspaceDocument? other) + public global::System.String Message { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError? other) { if (ReferenceEquals(null, other)) { @@ -112414,7 +112943,7 @@ public PageClientVersionDetailQuery_Node_WorkspaceDocument() return false; } - return true; + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112434,7 +112963,7 @@ public PageClientVersionDetailQuery_Node_WorkspaceDocument() return false; } - return Equals((PageClientVersionDetailQuery_Node_WorkspaceDocument)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError)obj); } public override global::System.Int32 GetHashCode() @@ -112442,34 +112971,31 @@ public PageClientVersionDetailQuery_Node_WorkspaceDocument() unchecked { int hash = 5; + hash ^= 397 * Message.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_ClientVersionConnection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 { - public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo pageInfo, global::System.Collections.Generic.IReadOnlyList? edges) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { - PageInfo = pageInfo; - Edges = edges; + this.__typename = __typename; + Message = message; + Errors = errors; } /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo PageInfo { get; } - /// - /// A list of edges. + /// The name of the current Object type at runtime. /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + public global::System.String __typename { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -112486,7 +113012,7 @@ public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global return false; } - return (PageInfo.Equals(other.PageInfo)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112506,7 +113032,7 @@ public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -112514,13 +113040,11 @@ public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global unchecked { int hash = 5; - hash ^= 397 * PageInfo.GetHashCode(); - if (Edges != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -112529,28 +113053,17 @@ public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError { - public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - HasNextPage = hasNextPage; - EndCursor = endCursor; + Collections = collections; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -112567,7 +113080,7 @@ public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::Syst return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112587,7 +113100,7 @@ public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::Syst return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -112595,10 +113108,9 @@ public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::Syst unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + foreach (var Collections_elm in Collections) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -112607,28 +113119,17 @@ public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::Syst } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError { - public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - Cursor = cursor; - Node = node; + Collections = collections; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -112645,7 +113146,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112665,7 +113166,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -112673,8 +113174,11 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -112682,22 +113186,20 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError { - public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; + Message = message; + Client = client; + Queries = queries; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -112714,7 +113216,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(globa return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112734,7 +113236,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(globa return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -112742,12 +113244,15 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(globa unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) + hash ^= 397 * Message.GetHashCode(); + if (Client != null) { - hash ^= 397 * PublishedTo_elm.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); } return hash; @@ -112757,16 +113262,21 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(globa // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError { - public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Stage = stage; + this.__typename = __typename; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -112783,7 +113293,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Publish return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112803,7 +113313,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Publish return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -112811,9 +113321,10 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Publish unchecked { int hash = 5; - if (Stage != null) + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -112823,16 +113334,21 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Publish // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 { - public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1(global::System.String __typename, global::System.String message) { - Name = name; + this.__typename = __typename; + Message = message; } - public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1? other) { if (ReferenceEquals(null, other)) { @@ -112849,7 +113365,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_S return false; } - return (Name.Equals(other.Name)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -112869,7 +113385,7 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_S return false; } - return Equals((PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1)obj); } public override global::System.Int32 GetHashCode() @@ -112877,402 +113393,190 @@ public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_S unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQueryResult + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange { + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } + /// - /// Fetches an object given its ID. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? Node { get; } - } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// The node interface is implemented by entities that have a global unique identifier. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node - { - } + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Api : IPageClientVersionDetailQuery_Node - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_ApiDocument : IPageClientVersionDetailQuery_Node - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_ApiKey : IPageClientVersionDetailQuery_Node - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Client : IPageClientVersionDetailQuery_Node - { - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? Versions { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_ClientChangeLog : IPageClientVersionDetailQuery_Node - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_ClientDeployment : IPageClientVersionDetailQuery_Node - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_ClientVersion : IPageClientVersionDetailQuery_Node - { - } + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics : IPageClientVersionDetailQuery_Node - { - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Environment : IPageClientVersionDetailQuery_Node - { + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationChangeLog : IPageClientVersionDetailQuery_Node + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange { - } + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationDeployment : IPageClientVersionDetailQuery_Node - { - } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition : IPageClientVersionDetailQuery_Node - { - } + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition : IPageClientVersionDetailQuery_Node - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition : IPageClientVersionDetailQuery_Node - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Group : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollection : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionVersion : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollection : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionDeployment : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionVersion : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Organization : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_OrganizationMember : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_SchemaChangeLog : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_SchemaDeployment : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Stage : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_User : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Workspace : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_WorkspaceDocument : IPageClientVersionDetailQuery_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions - { - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo PageInfo { get; } - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_ClientVersionConnection : IPageClientVersionDetailQuery_Node_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo : IPageClientVersionDetailQuery_Node_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge : IPageClientVersionDetailQuery_Node_Versions_Edges - { - } + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion : IPageClientVersionDetailQuery_Node_Versions_Edges_Node - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo - { - } + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage - { + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryResult : global::System.IEquatable, ISelectClientPromptQueryResult + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange { - public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? apiById) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - ApiById = apiById; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? ApiById { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQueryResult? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113289,7 +113593,7 @@ public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Clien return false; } - return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113309,7 +113613,7 @@ public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Clien return false; } - return Equals((SelectClientPromptQueryResult)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113317,9 +113621,12 @@ public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Clien unchecked { int hash = 5; - if (ApiById != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * ApiById.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -113329,16 +113636,25 @@ public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Clien // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Api : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Api + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange { - public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? clients) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Clients = clients; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? Clients { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Api? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113355,7 +113671,7 @@ public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine return false; } - return (((Clients is null && other.Clients is null) || Clients != null && Clients.Equals(other.Clients))); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113375,7 +113691,7 @@ public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine return false; } - return Equals((SelectClientPromptQuery_ApiById_Api)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113383,9 +113699,12 @@ public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - if (Clients != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Clients.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -113394,28 +113713,26 @@ public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_ClientsConnection : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_ClientsConnection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange { - public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo pageInfo) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_ClientsConnection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113432,7 +113749,7 @@ public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System. return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113452,7 +113769,7 @@ public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System. return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_ClientsConnection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113460,43 +113777,40 @@ public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System. unchecked { int hash = 5; - if (Edges != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Changes_elm.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange { - public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node node) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Cursor = cursor; - Node = node; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node Node { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113513,7 +113827,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System. return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113533,7 +113847,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System. return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113541,46 +113855,38 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System. unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange { - public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. + /// The name of the current Object type at runtime. /// - public global::System.String? StartCursor { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -113597,7 +113903,7 @@ public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System. return false; } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113617,7 +113923,7 @@ public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System. return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113625,18 +113931,9 @@ public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System. unchecked { int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -113644,22 +113941,21 @@ public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Client + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? api, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? versions) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { - Id = id; - Name = name; - Api = api; - Versions = versions; + this.__typename = __typename; + Severity = severity; } - public global::System.String Id { get; } - public global::System.String Name { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? Api { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? Versions { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113676,7 +113972,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System. return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113696,7 +113992,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System. return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113704,18 +114000,8 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System. unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - if (Api != null) - { - hash ^= 397 * Api.GetHashCode(); - } - - if (Versions != null) - { - hash ^= 397 * Versions.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -113723,18 +114009,23 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Name = name; - Path = path; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -113751,7 +114042,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System return false; } - return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113771,7 +114062,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113779,40 +114070,35 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); - foreach (var Path_elm in Path) - { - hash ^= 397 * Path_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo pageInfo) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - Edges = edges; - PageInfo = pageInfo; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. + /// The name of the current Object type at runtime. /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -113829,7 +114115,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersion return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113849,7 +114135,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersion return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -113857,43 +114143,31 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersion unchecked { int hash = 5; - if (Edges != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Changes_elm.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node node) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Cursor = cursor; - Node = node; + Errors = errors; } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node Node { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -113910,7 +114184,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientV return false; } - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -113930,7 +114204,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientV return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -113938,36 +114212,28 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientV unchecked { int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - HasNextPage = hasNextPage; - EndCursor = endCursor; + Errors = errors; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -113984,7 +114250,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_Page return false; } - return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114004,7 +114270,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_Page return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -114012,10 +114278,9 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_Page unchecked { int hash = 5; - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * EndCursor.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -114025,22 +114290,16 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_Page // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Id = id; - CreatedAt = createdAt; - Tag = tag; - PublishedTo = publishedTo; + Errors = errors; } - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -114057,7 +114316,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Cl return false; } - return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114077,7 +114336,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Cl return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -114085,12 +114344,9 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Cl unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - foreach (var PublishedTo_elm in PublishedTo) + foreach (var Errors_elm in Errors) { - hash ^= 397 * PublishedTo_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -114100,16 +114356,16 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Cl // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? stage) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Stage = stage; + Errors = errors; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment? other) { if (ReferenceEquals(null, other)) { @@ -114126,7 +114382,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu return false; } - return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114146,7 +114402,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -114154,9 +114410,9 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu unchecked { int hash = 5; - if (Stage != null) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -114166,16 +114422,16 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment { - public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) { - Name = name; + Errors = errors; } - public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment? other) { if (ReferenceEquals(null, other)) { @@ -114192,7 +114448,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu return false; } - return (Name.Equals(other.Name)); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114212,7 +114468,7 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu return false; } - return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -114220,267 +114476,30 @@ public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_Pu unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? ApiById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? Clients { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Api : ISelectClientPromptQuery_ApiById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_ClientsConnection : ISelectClientPromptQuery_ApiById_Clients - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPrompt_ClientEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges : ISelectClientPrompt_ClientEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge : ISelectClientPromptQuery_ApiById_Clients_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo : ISelectClientPromptQuery_ApiById_Clients_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPrompt_Client : IClientDetailPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node : ISelectClientPrompt_Client - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Client : ISelectClientPromptQuery_ApiById_Clients_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api - { - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Path { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo - { - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node - { - public global::System.String Id { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::System.String Tag { get; } - public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo - { - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage - { - public global::System.String Name { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublishResult : global::System.IEquatable, IBeginFusionConfigurationPublishResult + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError { - public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish beginFusionConfigurationPublish) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - BeginFusionConfigurationPublish = beginFusionConfigurationPublish; + Message = message; + Code = code; } - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish BeginFusionConfigurationPublish { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublishResult? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -114497,7 +114516,7 @@ public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi return false; } - return (BeginFusionConfigurationPublish.Equals(other.BeginFusionConfigurationPublish)); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114517,7 +114536,7 @@ public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi return false; } - return Equals((BeginFusionConfigurationPublishResult)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -114525,7 +114544,12 @@ public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi unchecked { int hash = 5; - hash ^= 397 * BeginFusionConfigurationPublish.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -114533,18 +114557,18 @@ public BeginFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload(global::System.String? requestId, global::System.Collections.Generic.IReadOnlyList? errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - RequestId = requestId; - Errors = errors; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - public global::System.String? RequestId { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -114561,7 +114585,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusi return false; } - return (((RequestId is null && other.RequestId is null) || RequestId != null && RequestId.Equals(other.RequestId))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114581,7 +114605,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusi return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -114589,17 +114613,14 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusi unchecked { int hash = 5; - if (RequestId != null) + if (McpFeatureCollection != null) { - hash ^= 397 * RequestId.GetHashCode(); + hash ^= 397 * McpFeatureCollection.GetHashCode(); } - if (Errors != null) + foreach (var Entities_elm in Entities) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -114609,21 +114630,18 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Message = message; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -114640,7 +114658,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Un return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114660,7 +114678,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Un return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -114668,8 +114686,16 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Un unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (OpenApiCollection != null) + { + hash ^= 397 * OpenApiCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -114677,23 +114703,18 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Un // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError(global::System.String __typename, global::System.String message, global::System.String apiId) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client(global::System.String id, global::System.String name) { - this.__typename = __typename; - Message = message; - ApiId = apiId; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.String ApiId { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -114710,7 +114731,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Ap return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && ApiId.Equals(other.ApiId); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114730,7 +114751,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Ap return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -114738,9 +114759,8 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Ap unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -114748,23 +114768,22 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Ap // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError(global::System.String __typename, global::System.String message, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; + DeployedTags = deployedTags; Message = message; - Name = name; + Hash = hash; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } public global::System.String Message { get; } - public global::System.String Name { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -114781,7 +114800,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_St return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && Name.Equals(other.Name); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114801,7 +114820,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_St return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -114809,9 +114828,18 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_St unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -114819,21 +114847,25 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_St // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError(global::System.String __typename, global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -114850,7 +114882,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Su return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114870,7 +114902,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Su return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -114879,7 +114911,13 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Su { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -114887,21 +114925,25 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_Su // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange { - public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -114918,7 +114960,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_In return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -114938,7 +114980,7 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_In return false; } - return Equals((BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -114947,101 +114989,39 @@ public BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_In { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublishResult - { - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish BeginFusionConfigurationPublish { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish - { - public global::System.String? RequestId { get; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_BeginFusionConfigurationPublishPayload : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_UnauthorizedOperation : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_ApiNotFoundError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IApiNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_StageNotFoundError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IStageNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISubgraphInvalidError : IError - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_SubgraphInvalidError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, ISubgraphInvalidError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange { - } + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + { + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Changes = changes; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IInvalidProcessingStateTransitionError : 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 IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : IBeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors, IInvalidProcessingStateTransitionError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChangedResult : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChangedResult - { - public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged onFusionConfigurationPublishingTaskChanged) - { - OnFusionConfigurationPublishingTaskChanged = onFusionConfigurationPublishingTaskChanged; - } - - public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged OnFusionConfigurationPublishingTaskChanged { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChangedResult? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115058,7 +115038,7 @@ public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitr return false; } - return (OnFusionConfigurationPublishingTaskChanged.Equals(other.OnFusionConfigurationPublishingTaskChanged)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115078,7 +115058,7 @@ public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitr return false; } - return Equals((OnFusionConfigurationPublishingTaskChangedResult)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115086,7 +115066,14 @@ public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitr unchecked { int hash = 5; - hash ^= 397 * OnFusionConfigurationPublishingTaskChanged.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -115094,28 +115081,25 @@ public OnFusionConfigurationPublishingTaskChangedResult(global::ChilliCream.Nitr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - State = state; this.__typename = __typename; - Failed = failed; - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Failed { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115132,7 +115116,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Failed.Equals(other.Failed) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115152,7 +115136,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115160,12 +115144,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Failed.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -115175,26 +115159,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - State = state; this.__typename = __typename; - Success = success; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Success { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115211,7 +115194,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Success.Equals(other.Success); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115231,7 +115214,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115239,9 +115222,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Success.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -115249,28 +115237,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String failed, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - State = state; this.__typename = __typename; - Failed = failed; - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Failed { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115287,7 +115272,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Failed.Equals(other.Failed) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115307,7 +115292,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115315,12 +115300,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Failed.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -115330,28 +115315,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String success, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - State = state; this.__typename = __typename; - Success = success; - Changes = changes; + Severity = severity; + Coordinate = coordinate; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Success { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -115368,7 +115348,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Success.Equals(other.Success) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115388,7 +115368,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115396,14 +115376,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Success.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -115411,21 +115386,21 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { - State = state; this.__typename = __typename; + Severity = severity; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115442,7 +115417,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115462,7 +115437,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115470,8 +115445,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); return hash; } } @@ -115479,21 +115454,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - State = state; this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -115510,7 +115487,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115530,7 +115507,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115538,8 +115515,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -115547,28 +115525,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String queued, global::System.Int32 queuePosition) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { - State = state; this.__typename = __typename; - Queued = queued; - QueuePosition = queuePosition; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Queued { get; } - public global::System.Int32 QueuePosition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -115585,7 +115560,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Queued.Equals(other.Queued) && global::System.Object.Equals(QueuePosition, other.QueuePosition); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115605,7 +115580,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -115613,10 +115588,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Queued.GetHashCode(); - hash ^= 397 * QueuePosition.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -115624,26 +115603,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::System.String ready) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - State = state; this.__typename = __typename; - Ready = ready; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Ready { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -115660,7 +115640,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && Ready.Equals(other.Ready); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115680,7 +115660,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -115688,9 +115668,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Ready.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -115698,21 +115680,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { - State = state; this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + Name = name; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -115729,7 +115717,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115749,7 +115737,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -115757,8 +115745,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -115766,23 +115761,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval(global::ChilliCream.Nitro.CommandLine.Client.ProcessingState state, global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? deployment) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { - State = state; this.__typename = __typename; - Deployment = deployment; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? Deployment { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -115799,7 +115798,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (State.Equals(other.State)) && __typename.Equals(other.__typename) && ((Deployment is null && other.Deployment is null) || Deployment != null && Deployment.Equals(other.Deployment)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115819,7 +115818,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -115827,13 +115826,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * State.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - if (Deployment != null) - { - hash ^= 397 * Deployment.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -115841,16 +115838,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError(global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -115867,7 +115873,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115887,7 +115893,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -115895,7 +115901,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -115903,23 +115920,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError(global::System.String message, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - Message = message; this.__typename = __typename; - Errors = errors; + Severity = severity; + Location = location; } - public global::System.String Message { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -115936,7 +115953,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -115956,7 +115973,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -115964,13 +115981,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -115978,16 +115991,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError(global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { - Message = message; + this.__typename = __typename; + Severity = severity; + Location = location; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -116004,7 +116024,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116024,7 +116044,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -116032,7 +116052,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -116040,16 +116062,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError(global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -116066,7 +116097,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116086,7 +116117,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -116094,7 +116125,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -116102,16 +116144,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError(global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Message = message; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.String Message { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -116128,7 +116177,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116148,7 +116197,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -116156,7 +116205,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -116164,23 +116215,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; - Errors = errors; + Severity = severity; + Coordinate = coordinate; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -116197,7 +116250,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116217,7 +116270,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -116226,10 +116279,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -116239,16 +116293,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -116265,7 +116326,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116285,7 +116346,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -116293,11 +116354,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -116305,16 +116364,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -116331,7 +116399,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116351,7 +116419,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -116359,9 +116427,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -116371,20 +116446,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Message = message; - Client = client; - Queries = queries; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -116401,7 +116483,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116421,7 +116503,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -116429,17 +116511,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -116447,21 +116523,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; - Changes = changes; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -116478,7 +116560,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116498,7 +116580,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -116507,11 +116589,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -116519,21 +116600,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1(global::System.String __typename, global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; - Message = message; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -116550,7 +116637,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116570,7 +116657,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -116579,7 +116666,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -116587,14 +116681,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Old = old; + New = @new; } /// @@ -116602,10 +116696,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -116622,7 +116716,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116642,7 +116736,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -116652,10 +116746,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -116665,14 +116763,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -116681,9 +116780,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -116700,7 +116800,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116720,7 +116820,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -116731,11 +116831,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -116743,14 +116840,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -116759,9 +116857,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -116778,7 +116877,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116798,7 +116897,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -116809,11 +116908,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -116821,14 +116917,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -116836,10 +116931,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -116856,7 +116950,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116876,7 +116970,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -116886,12 +116980,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -116899,14 +116988,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -116914,10 +117002,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -116934,7 +117021,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -116954,7 +117041,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -116964,12 +117051,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -116977,13 +117059,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + FieldName = fieldName; Changes = changes; } @@ -116993,9 +117076,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -117012,7 +117096,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117032,7 +117116,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -117043,6 +117127,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -117055,13 +117140,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; + TypeName = typeName; } /// @@ -117069,9 +117154,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -117088,7 +117173,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117108,7 +117193,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -117118,7 +117203,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -117126,12 +117211,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; + TypeName = typeName; } /// @@ -117139,8 +117225,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -117157,7 +117244,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117177,7 +117264,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -117187,6 +117274,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -117194,13 +117282,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; + Old = old; + New = @new; } /// @@ -117208,9 +117297,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -117227,7 +117317,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117247,7 +117337,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -117257,7 +117347,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -117265,14 +117364,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -117281,9 +117381,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -117300,7 +117401,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117320,7 +117421,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -117331,11 +117432,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -117343,16 +117441,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -117369,7 +117478,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117389,7 +117498,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -117397,11 +117506,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -117409,16 +117518,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -117435,7 +117551,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117455,7 +117571,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -117463,11 +117579,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -117475,16 +117589,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -117501,7 +117622,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117521,7 +117642,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -117529,11 +117650,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -117541,16 +117660,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -117567,7 +117697,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117587,7 +117717,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -117595,9 +117725,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -117607,16 +117741,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment(global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Errors = errors; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -117633,7 +117776,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117653,7 +117796,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -117661,9 +117804,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -117673,18 +117823,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; - Code = code; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } - public global::System.String? Code { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -117701,7 +117858,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117721,7 +117878,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -117729,10 +117886,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Code.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -117742,18 +117905,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -117770,7 +117938,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117790,7 +117958,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -117798,16 +117966,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -117815,18 +117976,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - OpenApiCollection = openApiCollection; - Entities = entities; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -117843,7 +118009,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117863,7 +118029,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -117871,16 +118037,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } - - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -117888,18 +118047,20 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client(global::System.String id, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - Id = id; - Name = name; + Message = message; + Client = client; + Queries = queries; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError? other) { if (ReferenceEquals(null, other)) { @@ -117916,7 +118077,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -117936,7 +118097,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -117944,8 +118105,17 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -117953,22 +118123,20 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - DeployedTags = deployedTags; Message = message; - Hash = hash; - Errors = errors; + Client = client; + Queries = queries; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -117985,7 +118153,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118005,7 +118173,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -118013,16 +118181,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) + hash ^= 397 * Message.GetHashCode(); + if (Client != null) { - hash ^= 397 * DeployedTags_elm.GetHashCode(); + hash ^= 397 * Client.GetHashCode(); } - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) + foreach (var Queries_elm in Queries) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Queries_elm.GetHashCode(); } return hash; @@ -118032,25 +118199,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -118067,7 +118225,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118087,7 +118245,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -118095,12 +118253,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -118110,25 +118265,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError? other) { if (ReferenceEquals(null, other)) { @@ -118145,7 +118291,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118165,7 +118311,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -118173,12 +118319,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -118188,25 +118331,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError? other) { if (ReferenceEquals(null, other)) { @@ -118223,7 +118359,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118243,7 +118379,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError)obj); } public override global::System.Int32 GetHashCode() @@ -118251,9 +118387,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -118266,25 +118400,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Message = message; + Errors = errors; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -118301,7 +118433,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118321,7 +118453,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -118330,11 +118462,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } return hash; @@ -118344,25 +118475,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -118379,7 +118501,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118399,7 +118521,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -118407,12 +118529,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -118422,25 +118541,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1? other) { if (ReferenceEquals(null, other)) { @@ -118457,7 +118567,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118477,7 +118587,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -118485,12 +118595,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Collections_elm in Collections) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Collections_elm.GetHashCode(); } return hash; @@ -118500,23 +118607,20 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; + Client = client; + Queries = queries; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? Client { get; } + public global::System.Collections.Generic.IReadOnlyList Queries { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -118533,7 +118637,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118553,7 +118657,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -118561,9 +118665,17 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Client != null) + { + hash ^= 397 * Client.GetHashCode(); + } + + foreach (var Queries_elm in Queries) + { + hash ^= 397 * Queries_elm.GetHashCode(); + } + return hash; } } @@ -118571,21 +118683,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -118602,7 +118709,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118622,7 +118729,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -118630,8 +118737,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -118639,23 +118749,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Collections = collections; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Collections { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2? other) { if (ReferenceEquals(null, other)) { @@ -118672,7 +118775,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118692,7 +118795,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2)obj); } public override global::System.Int32 GetHashCode() @@ -118700,9 +118803,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Collections_elm in Collections) + { + hash ^= 397 * Collections_elm.GetHashCode(); + } + return hash; } } @@ -118710,25 +118815,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1? other) { if (ReferenceEquals(null, other)) { @@ -118745,7 +118843,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118765,7 +118863,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1)obj); } public override global::System.Int32 GetHashCode() @@ -118773,9 +118871,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -118788,27 +118884,21 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError? other) { if (ReferenceEquals(null, other)) { @@ -118825,7 +118915,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118845,7 +118935,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError)obj); } public override global::System.Int32 GetHashCode() @@ -118854,10 +118944,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -118865,27 +118952,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + Message = message; + Column = column; + Position = position; + Line = line; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Position { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError? other) { if (ReferenceEquals(null, other)) { @@ -118902,7 +118989,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -118922,7 +119009,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError)obj); } public override global::System.Int32 GetHashCode() @@ -118931,14 +119018,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Position.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -118946,27 +119029,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) { this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Message = message; + Errors = errors; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1? other) { if (ReferenceEquals(null, other)) { @@ -118983,7 +119062,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119003,7 +119082,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); } public override global::System.Int32 GetHashCode() @@ -119012,10 +119091,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -119023,25 +119104,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) { if (ReferenceEquals(null, other)) { @@ -119058,7 +119132,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119078,7 +119152,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); } public override global::System.Int32 GetHashCode() @@ -119086,18 +119160,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -119105,23 +119169,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Location = location; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) { if (ReferenceEquals(null, other)) { @@ -119138,7 +119197,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119158,7 +119217,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); } public override global::System.Int32 GetHashCode() @@ -119166,9 +119225,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -119176,23 +119238,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Location = location; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) { if (ReferenceEquals(null, other)) { @@ -119209,7 +119266,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119229,7 +119286,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); } public override global::System.Int32 GetHashCode() @@ -119237,9 +119294,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -119247,25 +119307,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -119282,7 +119335,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119302,7 +119355,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -119310,18 +119363,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -119329,23 +119372,20 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) { if (ReferenceEquals(null, other)) { @@ -119362,7 +119402,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119382,7 +119422,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); } public override global::System.Int32 GetHashCode() @@ -119390,9 +119430,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + + hash ^= 397 * HttpMethod.GetHashCode(); + hash ^= 397 * Route.GetHashCode(); return hash; } } @@ -119400,25 +119444,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Errors = errors; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) { if (ReferenceEquals(null, other)) { @@ -119435,7 +119472,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119455,7 +119492,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); } public override global::System.Int32 GetHashCode() @@ -119463,14 +119500,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + foreach (var Errors_elm in Errors) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Errors_elm.GetHashCode(); } + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -119478,23 +119513,22 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Message = message; + Code = code; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError? other) { if (ReferenceEquals(null, other)) { @@ -119511,7 +119545,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119531,7 +119565,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError)obj); } public override global::System.Int32 GetHashCode() @@ -119539,9 +119573,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -119549,14 +119599,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } /// @@ -119564,10 +119615,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -119584,7 +119636,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119604,7 +119656,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -119614,16 +119666,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -119631,15 +119676,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Name = name; + Changes = changes; } /// @@ -119648,10 +119693,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -119668,7 +119713,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119688,7 +119733,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -119699,8 +119744,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -119708,15 +119757,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + Name = name; TypeName = typeName; - FieldName = fieldName; } /// @@ -119725,10 +119774,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.String Name { get; } public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -119745,7 +119794,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -119765,7 +119814,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -119776,89 +119825,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged - { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; - } - - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); - } - - 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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -119866,9 +119834,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -119884,7 +119852,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -119921,7 +119889,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -119948,15 +119916,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Location = location; } /// @@ -119964,11 +119930,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -119985,7 +119949,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120005,7 +119969,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -120015,9 +119979,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -120025,15 +119987,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Location = location; } /// @@ -120041,11 +120001,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -120062,7 +120020,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120082,7 +120040,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -120092,9 +120050,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -120102,13 +120058,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Old = old; + New = @new; } /// @@ -120116,9 +120073,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -120135,7 +120093,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120155,7 +120113,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -120165,7 +120123,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -120173,13 +120140,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Coordinate = coordinate; } /// @@ -120187,9 +120154,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -120206,7 +120173,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120226,7 +120193,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -120236,7 +120203,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -120244,14 +120211,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - FieldName = fieldName; Changes = changes; } @@ -120261,10 +120227,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -120281,7 +120246,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120301,7 +120266,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -120312,7 +120277,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -120325,13 +120289,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + Coordinate = coordinate; } /// @@ -120339,9 +120303,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -120358,7 +120322,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120378,7 +120342,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -120388,7 +120352,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -120396,13 +120360,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + Old = old; + New = @new; } /// @@ -120410,9 +120375,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -120429,7 +120395,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120449,7 +120415,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -120459,7 +120425,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -120467,14 +120442,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// @@ -120482,10 +120458,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -120502,7 +120479,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120522,7 +120499,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -120532,16 +120509,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -120549,9 +120519,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; @@ -120569,7 +120539,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -120606,7 +120576,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -120626,15 +120596,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; FieldName = fieldName; + Changes = changes; } /// @@ -120643,10 +120613,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -120663,7 +120633,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120683,7 +120653,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -120694,8 +120664,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -120703,13 +120677,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Old = old; + New = @new; } /// @@ -120717,9 +120692,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -120736,7 +120712,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120756,7 +120732,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -120766,7 +120742,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -120774,13 +120759,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// @@ -120788,9 +120775,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -120807,7 +120796,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120827,7 +120816,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -120837,7 +120826,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -120845,15 +120836,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + TypeName = typeName; FieldName = fieldName; - Changes = changes; } /// @@ -120862,10 +120853,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -120882,7 +120873,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120902,7 +120893,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -120913,12 +120904,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -120926,14 +120913,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + InterfaceName = interfaceName; } /// @@ -120941,10 +120927,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -120961,7 +120946,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -120981,7 +120966,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -120991,16 +120976,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -121008,14 +120984,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + InterfaceName = interfaceName; } /// @@ -121023,10 +120998,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -121043,7 +121017,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121063,7 +121037,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -121073,16 +121047,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -121090,13 +121055,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } /// @@ -121104,9 +121071,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -121123,7 +121092,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121143,7 +121112,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -121153,7 +121122,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -121161,9 +121136,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; @@ -121177,7 +121152,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -121214,7 +121189,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -121232,20 +121207,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Message = message; - Client = client; - Queries = queries; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -121262,7 +121240,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121282,7 +121260,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -121290,17 +121268,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) - { - hash ^= 397 * Client.GetHashCode(); - } - - foreach (var Queries_elm in Queries) - { - hash ^= 397 * Queries_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -121308,20 +121278,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; - Client = client; - Queries = queries; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -121338,7 +121313,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121358,7 +121333,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -121366,15 +121341,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Client.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - foreach (var Queries_elm in Queries) + if (New != null) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } return hash; @@ -121384,18 +121360,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Message = message; - Changes = changes; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -121412,7 +121397,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121432,7 +121417,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -121440,12 +121425,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -121453,23 +121437,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; - Message = message; - Errors = errors; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -121486,7 +121474,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121506,7 +121494,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -121515,12 +121503,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -121528,16 +121514,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -121554,7 +121547,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121574,7 +121567,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -121582,11 +121575,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -121594,16 +121585,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -121620,7 +121618,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121640,7 +121638,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -121648,11 +121646,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -121660,16 +121656,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -121686,7 +121693,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121706,7 +121713,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -121714,9 +121721,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -121726,16 +121737,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -121752,7 +121772,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121772,7 +121792,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -121780,9 +121800,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -121792,20 +121819,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2(global::System.String message, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? client, global::System.Collections.Generic.IReadOnlyList queries) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - Message = message; - Client = client; - Queries = queries; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.String Message { get; } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? Client { get; } - public global::System.Collections.Generic.IReadOnlyList Queries { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -121822,7 +121854,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Client is null && other.Client is null) || Client != null && Client.Equals(other.Client)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Queries, other.Queries); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121842,7 +121874,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -121850,15 +121882,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Client != null) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Client.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - foreach (var Queries_elm in Queries) + if (New != null) { - hash ^= 397 * Queries_elm.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } return hash; @@ -121868,18 +121901,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1(global::System.String message, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Message = message; - Changes = changes; + this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -121896,7 +121934,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121916,7 +121954,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -121924,12 +121962,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -121937,21 +121972,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError(global::System.String __typename, global::System.String message) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; - Message = message; + Severity = severity; + TypeName = typeName; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -121968,7 +122005,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -121988,7 +122025,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -121997,7 +122034,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -122005,27 +122043,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError(global::System.String __typename, global::System.String message, global::System.Int32 column, global::System.Int32 position, global::System.Int32 line) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { this.__typename = __typename; - Message = message; - Column = column; - Position = position; - Line = line; + Severity = severity; + DeprecationReason = deprecationReason; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Int32 Column { get; } - public global::System.Int32 Position { get; } - public global::System.Int32 Line { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -122042,7 +122076,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::System.Object.Equals(Column, other.Column) && global::System.Object.Equals(Position, other.Position) && global::System.Object.Equals(Line, other.Line); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122062,7 +122096,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -122071,10 +122105,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Position.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -122082,23 +122118,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1(global::System.String __typename, global::System.String message, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; - Message = message; - Errors = errors; + Severity = severity; + Old = old; + New = @new; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.String Message { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -122115,7 +122153,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122135,7 +122173,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -122144,10 +122182,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -122157,16 +122200,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { - Collections = collections; + this.__typename = __typename; + Severity = severity; + OldType = oldType; + NewType = newType; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -122183,7 +122235,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122203,7 +122255,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -122211,11 +122263,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) - { - hash ^= 397 * Collections_elm.GetHashCode(); - } - + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -122223,16 +122274,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2(global::System.Collections.Generic.IReadOnlyList collections) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Collections = collections; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.Collections.Generic.IReadOnlyList Collections { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -122249,7 +122302,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Collections, other.Collections)); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122269,7 +122322,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -122277,9 +122330,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Collections_elm in Collections) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Collections_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } return hash; @@ -122289,18 +122343,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection(global::System.String id, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - Id = id; - Name = name; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -122317,7 +122378,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122337,7 +122398,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -122345,8 +122406,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122354,18 +122425,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - Errors = errors; - Name = name; + Severity = severity; + DeprecationReason = deprecationReason; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -122382,7 +122453,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122402,7 +122473,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -122410,12 +122481,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (DeprecationReason != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * DeprecationReason.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -122423,18 +122494,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - Errors = errors; - Name = name; + Severity = severity; + Old = old; + New = @new; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -122451,7 +122529,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122471,7 +122549,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -122479,12 +122557,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122492,18 +122576,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection(global::System.String id, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - Id = id; - Name = name; + Severity = severity; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } - public global::System.String Id { get; } - public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -122520,7 +122611,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122540,7 +122631,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -122548,8 +122639,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122557,20 +122650,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(global::System.Collections.Generic.IReadOnlyList errors, global::System.String httpMethod, global::System.String route) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - Errors = errors; - HttpMethod = httpMethod; - Route = route; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -122587,7 +122687,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && HttpMethod.Equals(other.HttpMethod) && Route.Equals(other.Route); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122607,7 +122707,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -122615,13 +122715,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - - hash ^= 397 * HttpMethod.GetHashCode(); - hash ^= 397 * Route.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122629,18 +122727,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel(global::System.Collections.Generic.IReadOnlyList errors, global::System.String name) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) { - Errors = errors; + Severity = severity; + Coordinate = coordinate; Name = name; + this.__typename = __typename; + Changes = changes; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } public global::System.String Name { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -122657,7 +122764,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)) && Name.Equals(other.Name); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122677,7 +122784,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -122685,12 +122792,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var Errors_elm in Errors) + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } - hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -122698,22 +122808,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError(global::System.String message, global::System.String? code, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) { - Message = message; - Code = code; - Path = path; - Locations = locations; + Severity = severity; + Coordinate = coordinate; + Name = name; + TypeName = typeName; + this.__typename = __typename; } - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -122730,7 +122845,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122750,7 +122865,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -122758,25 +122873,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } - - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122784,27 +122885,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { - this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + DeprecationReason = deprecationReason; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3? other) { if (ReferenceEquals(null, other)) { @@ -122821,7 +122913,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122841,7 +122933,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3)obj); } public override global::System.Int32 GetHashCode() @@ -122849,11 +122941,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -122861,27 +122954,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) { - this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + Old = old; + New = @new; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -122898,7 +122989,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122918,7 +123009,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -122926,15 +123017,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -122942,27 +123036,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) { - this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + OldType = oldType; + NewType = newType; + this.__typename = __typename; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -122979,7 +123071,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -122999,7 +123091,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -123007,11 +123099,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -123019,25 +123110,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client? other) { if (ReferenceEquals(null, other)) { @@ -123054,7 +123138,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123074,7 +123158,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client)obj); } public override global::System.Int32 GetHashCode() @@ -123082,18 +123166,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -123101,23 +123175,22 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) { - this.__typename = __typename; - Severity = severity; - Location = location; + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) { if (ReferenceEquals(null, other)) { @@ -123134,7 +123207,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123154,7 +123227,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); } public override global::System.Int32 GetHashCode() @@ -123162,9 +123235,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + foreach (var DeployedTags_elm in DeployedTags) + { + hash ^= 397 * DeployedTags_elm.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Hash.GetHashCode(); + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + return hash; } } @@ -123172,23 +123254,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Location = location; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -123205,7 +123282,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123225,7 +123302,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -123233,9 +123310,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + if (McpFeatureCollection != null) + { + hash ^= 397 * McpFeatureCollection.GetHashCode(); + } + + foreach (var Entities_elm in Entities) + { + hash ^= 397 * Entities_elm.GetHashCode(); + } + return hash; } } @@ -123243,25 +123327,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + OpenApiCollection = openApiCollection; + Entities = entities; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) { if (ReferenceEquals(null, other)) { @@ -123278,7 +123355,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123298,7 +123375,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); } public override global::System.Int32 GetHashCode() @@ -123306,16 +123383,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + if (OpenApiCollection != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * OpenApiCollection.GetHashCode(); } - if (New != null) + foreach (var Entities_elm in Entities) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Entities_elm.GetHashCode(); } return hash; @@ -123325,13 +123400,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + Changes = changes; } /// @@ -123340,8 +123416,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123358,7 +123435,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123378,7 +123455,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123389,6 +123466,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -123396,9 +123478,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; @@ -123412,9 +123494,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123451,7 +123533,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123474,13 +123556,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + Changes = changes; } /// @@ -123489,8 +123572,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123507,7 +123591,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123527,7 +123611,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123538,6 +123622,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -123545,14 +123634,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Coordinate = coordinate; + Changes = changes; } /// @@ -123560,10 +123649,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123580,7 +123669,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123600,7 +123689,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123610,14 +123699,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -123627,15 +123712,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -123644,10 +123728,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123664,7 +123747,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123684,7 +123767,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123695,8 +123778,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -123704,15 +123790,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -123721,10 +123806,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123741,7 +123825,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123761,7 +123845,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123772,8 +123856,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -123781,15 +123868,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } /// @@ -123798,10 +123883,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -123818,7 +123901,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123838,7 +123921,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123849,12 +123932,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -123862,14 +123939,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; } /// @@ -123877,10 +123952,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -123897,7 +123970,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -123917,7 +123990,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -123927,16 +124000,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -123944,15 +124007,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } /// @@ -123961,10 +124022,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -123981,7 +124040,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124001,7 +124060,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -124012,8 +124071,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -124021,15 +124078,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Changes = changes; } /// @@ -124038,10 +124094,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange? other) { if (ReferenceEquals(null, other)) { @@ -124058,7 +124113,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124078,7 +124133,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange)obj); } public override global::System.Int32 GetHashCode() @@ -124089,8 +124144,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -124098,23 +124156,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Message = message; + Code = code; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Message { get; } + public global::System.String? Code { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError? other) { if (ReferenceEquals(null, other)) { @@ -124131,7 +124184,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124151,7 +124204,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError)obj); } public override global::System.Int32 GetHashCode() @@ -124159,9 +124212,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + return hash; } } @@ -124169,23 +124225,22 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Code = code; + Message = message; + Path = path; + Locations = locations; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) { if (ReferenceEquals(null, other)) { @@ -124202,7 +124257,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124222,7 +124277,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); } public override global::System.Int32 GetHashCode() @@ -124230,9 +124285,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + if (Code != null) + { + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } + } + return hash; } } @@ -124240,27 +124311,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -124277,7 +124337,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124297,7 +124357,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -124305,13 +124365,91 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + hash ^= 397 * Message.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + { + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) + { + Code = code; + Message = message; + Path = path; + Locations = locations; + } + + public global::System.String? Code { get; } + public global::System.String Message { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); + } + + 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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Code != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Code.GetHashCode(); + } + + hash ^= 397 * Message.GetHashCode(); + if (Path != null) + { + hash ^= 397 * Path.GetHashCode(); + } + + if (Locations != null) + { + foreach (var Locations_elm in Locations) + { + hash ^= 397 * Locations_elm.GetHashCode(); + } } return hash; @@ -124321,23 +124459,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; + Message = message; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) { if (ReferenceEquals(null, other)) { @@ -124354,7 +124485,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (Message.Equals(other.Message)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124374,7 +124505,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); } public override global::System.Int32 GetHashCode() @@ -124382,9 +124513,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -124392,13 +124521,78 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) + { + Column = column; + Line = line; + } + + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + } + + 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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange + { + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + DeprecationReason = deprecationReason; } /// @@ -124406,9 +124600,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String? DeprecationReason { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange? other) { if (ReferenceEquals(null, other)) { @@ -124425,7 +124619,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124445,7 +124639,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange)obj); } public override global::System.Int32 GetHashCode() @@ -124455,7 +124649,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (DeprecationReason != null) + { + hash ^= 397 * DeprecationReason.GetHashCode(); + } + return hash; } } @@ -124463,9 +124661,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -124481,7 +124679,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -124518,7 +124716,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -124545,15 +124743,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + OldType = oldType; + NewType = newType; } /// @@ -124561,11 +124758,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String OldType { get; } + public global::System.String NewType { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged? other) { if (ReferenceEquals(null, other)) { @@ -124582,7 +124778,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124602,7 +124798,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged)obj); } public override global::System.Int32 GetHashCode() @@ -124612,9 +124808,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * OldType.GetHashCode(); + hash ^= 397 * NewType.GetHashCode(); return hash; } } @@ -124622,15 +124817,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + Name = name; TypeName = typeName; - FieldName = fieldName; } /// @@ -124639,10 +124834,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } + public global::System.String Name { get; } public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded? other) { if (ReferenceEquals(null, other)) { @@ -124659,7 +124854,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124679,7 +124874,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); } public override global::System.Int32 GetHashCode() @@ -124690,8 +124885,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -124699,13 +124894,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Coordinate = coordinate; + Name = name; + Changes = changes; } /// @@ -124713,9 +124910,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged? other) { if (ReferenceEquals(null, other)) { @@ -124732,7 +124931,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124752,7 +124951,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); } public override global::System.Int32 GetHashCode() @@ -124762,7 +124961,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -124770,13 +124975,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) { this.__typename = __typename; Severity = severity; - InterfaceName = interfaceName; + Coordinate = coordinate; + Name = name; + TypeName = typeName; } /// @@ -124784,9 +124991,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::System.String Coordinate { get; } + public global::System.String Name { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) { if (ReferenceEquals(null, other)) { @@ -124803,7 +125012,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124823,7 +125032,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -124833,7 +125042,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -124841,15 +125052,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Old = old; + New = @new; } /// @@ -124857,11 +125067,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged? other) { if (ReferenceEquals(null, other)) { @@ -124878,7 +125087,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124898,7 +125107,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); } public override global::System.Int32 GetHashCode() @@ -124908,11 +125117,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -124922,14 +125134,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) { this.__typename = __typename; Severity = severity; - Old = old; - New = @new; + Location = location; } /// @@ -124937,10 +125148,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) { if (ReferenceEquals(null, other)) { @@ -124957,7 +125167,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -124977,7 +125187,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -124987,16 +125197,78 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } + hash ^= 397 * Location.GetHashCode(); + return hash; + } + } + } - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + { + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + { + this.__typename = __typename; + Severity = severity; + Location = location; + } + + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + } + + 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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Location.GetHashCode(); return hash; } } @@ -125004,9 +125276,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -125022,7 +125294,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -125059,7 +125331,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -125086,13 +125358,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + Coordinate = coordinate; } /// @@ -125100,9 +125372,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded? other) { if (ReferenceEquals(null, other)) { @@ -125119,7 +125391,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125139,7 +125411,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); } public override global::System.Int32 GetHashCode() @@ -125149,7 +125421,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -125157,13 +125429,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; - TypeName = typeName; + Coordinate = coordinate; + Changes = changes; } /// @@ -125171,9 +125444,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } + public global::System.String Coordinate { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged? other) { if (ReferenceEquals(null, other)) { @@ -125190,7 +125464,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125210,7 +125484,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); } public override global::System.Int32 GetHashCode() @@ -125220,7 +125494,12 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + foreach (var Changes_elm in Changes) + { + hash ^= 397 * Changes_elm.GetHashCode(); + } + return hash; } } @@ -125228,13 +125507,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) { this.__typename = __typename; Severity = severity; - DeprecationReason = deprecationReason; + Coordinate = coordinate; } /// @@ -125242,9 +125521,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Coordinate { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) { if (ReferenceEquals(null, other)) { @@ -125261,7 +125540,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125281,7 +125560,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -125291,11 +125570,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * Coordinate.GetHashCode(); return hash; } } @@ -125303,9 +125578,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; @@ -125321,7 +125596,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String? Old { get; } public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) { if (ReferenceEquals(null, other)) { @@ -125358,7 +125633,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); } public override global::System.Int32 GetHashCode() @@ -125385,14 +125660,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; - OldType = oldType; - NewType = newType; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } /// @@ -125400,10 +125676,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange? other) { if (ReferenceEquals(null, other)) { @@ -125420,7 +125697,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125440,7 +125717,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); } public override global::System.Int32 GetHashCode() @@ -125450,8 +125727,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -125459,18 +125737,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; Severity = severity; - DeprecationReason = deprecationReason; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) { if (ReferenceEquals(null, other)) { @@ -125487,7 +125774,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125507,7 +125794,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); } public override global::System.Int32 GetHashCode() @@ -125515,12 +125802,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } - + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -125528,100 +125814,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { - Severity = severity; - Old = old; - New = @new; this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - - hash ^= 397 * __typename.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 - { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) - { - Severity = severity; - DeprecationReason = deprecationReason; - } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -125638,7 +125851,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125658,7 +125871,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -125666,10 +125879,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -125679,25 +125895,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { + this.__typename = __typename; Severity = severity; Old = old; New = @new; - this.__typename = __typename; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) { if (ReferenceEquals(null, other)) { @@ -125714,7 +125930,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125734,7 +125950,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); } public override global::System.Int32 GetHashCode() @@ -125742,6 +125958,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); if (Old != null) { @@ -125753,7 +125970,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * New.GetHashCode(); } - hash ^= 397 * __typename.GetHashCode(); return hash; } } @@ -125761,25 +125977,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { - Severity = severity; - OldType = oldType; - NewType = newType; this.__typename = __typename; + Severity = severity; + Coordinate = coordinate; + TypeName = typeName; + FieldName = fieldName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -125796,7 +126014,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125816,7 +126034,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -125824,10 +126042,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -125835,27 +126054,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { + this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Name = name; TypeName = typeName; - this.__typename = __typename; + FieldName = fieldName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) { if (ReferenceEquals(null, other)) { @@ -125872,7 +126091,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125892,7 +126111,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); } public override global::System.Int32 GetHashCode() @@ -125900,11 +126119,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -125912,27 +126131,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String __typename, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Severity = severity; - Coordinate = coordinate; - Name = name; this.__typename = __typename; - Changes = changes; + Severity = severity; + InterfaceName = interfaceName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) { if (ReferenceEquals(null, other)) { @@ -125949,7 +126164,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && __typename.Equals(other.__typename) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -125969,7 +126184,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); } public override global::System.Int32 GetHashCode() @@ -125977,15 +126192,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -125993,27 +126202,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; this.__typename = __typename; + Severity = severity; + InterfaceName = interfaceName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) { if (ReferenceEquals(null, other)) { @@ -126030,7 +126235,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126050,7 +126255,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -126058,11 +126263,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -126070,18 +126273,27 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { + this.__typename = __typename; Severity = severity; - DeprecationReason = deprecationReason; + Coordinate = coordinate; + FieldName = fieldName; + Changes = changes; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + public global::System.String Coordinate { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) { if (ReferenceEquals(null, other)) { @@ -126098,7 +126310,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126118,7 +126330,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); } public override global::System.Int32 GetHashCode() @@ -126126,10 +126338,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; + hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) + hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); + foreach (var Changes_elm in Changes) { - hash ^= 397 * DeprecationReason.GetHashCode(); + hash ^= 397 * Changes_elm.GetHashCode(); } return hash; @@ -126139,25 +126354,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Severity = severity; - Old = old; - New = @new; this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) { if (ReferenceEquals(null, other)) { @@ -126174,7 +126387,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126194,7 +126407,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); } public override global::System.Int32 GetHashCode() @@ -126202,18 +126415,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -126221,25 +126425,23 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2(global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType, global::System.String __typename) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { - Severity = severity; - OldType = oldType; - NewType = newType; this.__typename = __typename; + Severity = severity; + TypeName = typeName; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) { if (ReferenceEquals(null, other)) { @@ -126256,7 +126458,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Severity.Equals(other.Severity)) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType) && __typename.Equals(other.__typename); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126276,7 +126478,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -126284,10 +126486,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -126295,87 +126496,25 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client - { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client(global::System.String id, global::System.String name) - { - Id = id; - Name = name; - } - - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Id.Equals(other.Id)) && Name.Equals(other.Name); - } - - 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((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed(global::System.Collections.Generic.IReadOnlyList deployedTags, global::System.String message, global::System.String hash, global::System.Collections.Generic.IReadOnlyList errors) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; + this.__typename = __typename; + Severity = severity; + Old = old; + New = @new; } - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } + /// + /// The name of the current Object type at runtime. + /// + public global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) { if (ReferenceEquals(null, other)) { @@ -126392,7 +126531,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(DeployedTags, other.DeployedTags)) && Message.Equals(other.Message) && Hash.Equals(other.Hash) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126412,7 +126551,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); } public override global::System.Int32 GetHashCode() @@ -126420,16 +126559,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - foreach (var DeployedTags_elm in DeployedTags) + hash ^= 397 * __typename.GetHashCode(); + hash ^= 397 * Severity.GetHashCode(); + if (Old != null) { - hash ^= 397 * DeployedTags_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); } - hash ^= 397 * Message.GetHashCode(); - hash ^= 397 * Hash.GetHashCode(); - foreach (var Errors_elm in Errors) + if (New != null) { - hash ^= 397 * Errors_elm.GetHashCode(); + hash ^= 397 * New.GetHashCode(); } return hash; @@ -126439,14 +126578,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -126455,9 +126595,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -126474,7 +126615,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126494,7 +126635,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -126505,11 +126646,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -126517,14 +126655,15 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; - Changes = changes; + TypeName = typeName; + FieldName = fieldName; } /// @@ -126533,9 +126672,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String TypeName { get; } + public global::System.String FieldName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) { if (ReferenceEquals(null, other)) { @@ -126552,7 +126692,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126572,7 +126712,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); } public override global::System.Int32 GetHashCode() @@ -126583,11 +126723,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * TypeName.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -126595,14 +126732,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -126610,10 +126746,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) { if (ReferenceEquals(null, other)) { @@ -126630,7 +126765,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126650,7 +126785,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); } public override global::System.Int32 GetHashCode() @@ -126660,12 +126795,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -126673,14 +126803,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + InterfaceName = interfaceName; } /// @@ -126688,10 +126817,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String InterfaceName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) { if (ReferenceEquals(null, other)) { @@ -126708,7 +126836,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126728,7 +126856,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); } public override global::System.Int32 GetHashCode() @@ -126738,12 +126866,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -126751,13 +126874,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) { this.__typename = __typename; Severity = severity; Coordinate = coordinate; + FieldName = fieldName; Changes = changes; } @@ -126767,9 +126891,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String FieldName { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) { if (ReferenceEquals(null, other)) { @@ -126786,7 +126911,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126806,7 +126931,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); } public override global::System.Int32 GetHashCode() @@ -126817,6 +126942,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * FieldName.GetHashCode(); foreach (var Changes_elm in Changes) { hash ^= 397 * Changes_elm.GetHashCode(); @@ -126829,14 +126955,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; - Changes = changes; + Old = old; + New = @new; } /// @@ -126844,10 +126970,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) { if (ReferenceEquals(null, other)) { @@ -126864,7 +126990,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126884,7 +127010,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); } public override global::System.Int32 GetHashCode() @@ -126894,10 +127020,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Old != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); } return hash; @@ -126907,13 +127037,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; + Old = old; + New = @new; } /// @@ -126921,9 +127052,10 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String? Old { get; } + public global::System.String? New { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) { if (ReferenceEquals(null, other)) { @@ -126940,7 +127072,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -126960,7 +127092,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); } public override global::System.Int32 GetHashCode() @@ -126970,7 +127102,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (Old != null) + { + hash ^= 397 * Old.GetHashCode(); + } + + if (New != null) + { + hash ^= 397 * New.GetHashCode(); + } + return hash; } } @@ -126978,12 +127119,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; + TypeName = typeName; } /// @@ -126991,8 +127133,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) { if (ReferenceEquals(null, other)) { @@ -127009,7 +127152,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -127029,7 +127172,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); } public override global::System.Int32 GetHashCode() @@ -127039,6 +127182,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -127046,13 +127190,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) { this.__typename = __typename; Severity = severity; - Coordinate = coordinate; + TypeName = typeName; } /// @@ -127060,9 +127204,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin /// public global::System.String __typename { get; } public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String TypeName { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) { if (ReferenceEquals(null, other)) { @@ -127079,7 +127223,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -127099,7 +127243,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); } public override global::System.Int32 GetHashCode() @@ -127109,7 +127253,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin int hash = 5; hash ^= 397 * __typename.GetHashCode(); hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -127117,25 +127261,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Column = column; + Line = line; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -127152,7 +127289,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -127172,7 +127309,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -127180,14 +127317,8 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -127195,18 +127326,18 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError + public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError(global::System.String message, global::System.String? code) + public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) { - Message = message; - Code = code; + Column = column; + Line = line; } - public global::System.String Message { get; } - public global::System.String? Code { get; } + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError? other) + public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) { if (ReferenceEquals(null, other)) { @@ -127223,7 +127354,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (Message.Equals(other.Message)) && ((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code)); + return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -127243,7 +127374,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError)obj); + return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); } public override global::System.Int32 GetHashCode() @@ -127251,855 +127382,1747 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Message.GetHashCode(); - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } - + hash ^= 397 * Column.GetHashCode(); + hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection + public partial interface IOnFusionConfigurationPublishingTaskChangedResult { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? openApiCollection, global::System.Collections.Generic.IReadOnlyList entities) - { - OpenApiCollection = openApiCollection; - Entities = entities; - } + public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged OnFusionConfigurationPublishingTaskChanged { get; } + } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged + { + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } + public global::System.String __typename { get; } + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFusionConfigurationPublishingFailed + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Failed { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingFailed + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFusionConfigurationPublishingSuccess + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Success { get; } + } - return (((OpenApiCollection is null && other.OpenApiCollection is null) || OpenApiCollection != null && OpenApiCollection.Equals(other.OpenApiCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingSuccess + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFusionConfigurationValidationFailed + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Failed { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationFailed + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IFusionConfigurationValidationSuccess + { + /// + /// The name of the current Object type at runtime. + /// + public global::System.String Success { get; } + public global::System.Collections.Generic.IReadOnlyList Changes { get; } + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationSuccess + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (OpenApiCollection != null) - { - hash ^= 397 * OpenApiCollection.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IOperationInProgress + { + } - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskApproved + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsQueued + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsReady { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? mcpFeatureCollection, global::System.Collections.Generic.IReadOnlyList entities) - { - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; - } + } - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IValidationInProgress + { + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IWaitForApproval + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + { + public global::System.String Message { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + { + } - return (((McpFeatureCollection is null && other.McpFeatureCollection is null) || McpFeatureCollection != null && McpFeatureCollection.Equals(other.McpFeatureCollection))) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Entities, other.Entities); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors, IInvalidGraphQLSchemaError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1 + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (McpFeatureCollection != null) - { - hash ^= 397 * McpFeatureCollection.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IInvalidGraphQLSchemaError + { + } - foreach (var Entities_elm in Entities) - { - hash ^= 397 * Entities_elm.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IMcpFeatureCollectionValidationError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IOpenApiCollectionValidationError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IPersistedQueryValidationError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) - { - Code = code; - Message = message; - Path = path; - Locations = locations; - } + } - public global::System.String? Code { get; } - public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, ISchemaVersionChangeViolationError + { + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IUnexpectedProcessingError + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes : ISchemaChangeLogEntry + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IDirectiveModifiedChange + { + } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IEnumModifiedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IInputObjectModifiedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IInterfaceModifiedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IObjectModifiedChange + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IScalarModifiedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ITypeSystemMemberAddedChange + { + } - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ISchemaChange + { + } - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ITypeSystemMemberRemovedChange + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IUnionModifiedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(global::System.String message) - { - Message = message; - } + } - public global::System.String Message { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return (Message.Equals(other.Message)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(global::System.String? code, global::System.String message, global::System.String? path, global::System.Collections.Generic.IReadOnlyList? locations) - { - Code = code; - Message = message; - Path = path; - Locations = locations; - } + } - public global::System.String? Code { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } public global::System.String Message { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes : ISchemaChangeLogEntry + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IDirectiveModifiedChange + { + } - return (((Code is null && other.Code is null) || Code != null && Code.Equals(other.Code))) && Message.Equals(other.Message) && ((Path is null && other.Path is null) || Path != null && Path.Equals(other.Path)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Locations, other.Locations); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IEnumModifiedChange + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IInputObjectModifiedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IInterfaceModifiedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IObjectModifiedChange + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IScalarModifiedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - if (Code != null) - { - hash ^= 397 * Code.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ITypeSystemMemberAddedChange + { + } - hash ^= 397 * Message.GetHashCode(); - if (Path != null) - { - hash ^= 397 * Path.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ISchemaChange + { + } - if (Locations != null) - { - foreach (var Locations_elm in Locations) - { - hash ^= 397 * Locations_elm.GetHashCode(); - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ITypeSystemMemberRemovedChange + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IUnionModifiedChange + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(global::System.String message) - { - Message = message; - } + public global::System.String __typename { get; } + } - public global::System.String Message { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentAdded + { + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentChanged + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentRemoved + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDescriptionChanged + { + } - return (Message.Equals(other.Message)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDirectiveLocationAdded + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDirectiveLocationRemoved + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1 + { + public global::System.String __typename { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IDescriptionChanged + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueAdded + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Message.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueChanged + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(global::System.Int32 column, global::System.Int32 line) - { - Column = column; - Line = line; - } + } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2 + { + public global::System.String __typename { get; } + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IDescriptionChanged + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IFieldAddedChange + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IFieldRemovedChange + { + } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IInputFieldChanged + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3 + { + public global::System.String __typename { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IDescriptionChanged + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IFieldAddedChange + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IFieldRemovedChange + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IInterfaceImplementationAdded + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IInterfaceImplementationRemoved { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? deprecationReason) - { - this.__typename = __typename; - Severity = severity; - DeprecationReason = deprecationReason; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? DeprecationReason { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IOutputFieldChanged + { + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IPossibleTypeAdded + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IPossibleTypeRemoved + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4 + { + public global::System.String __typename { get; } + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((DeprecationReason is null && other.DeprecationReason is null) || DeprecationReason != null && DeprecationReason.Equals(other.DeprecationReason)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IDescriptionChanged + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IFieldAddedChange + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IFieldRemovedChange + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IInterfaceImplementationAdded + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IInterfaceImplementationRemoved + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (DeprecationReason != null) - { - hash ^= 397 * DeprecationReason.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IOutputFieldChanged + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_5 + { + public global::System.String __typename { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_5, IDescriptionChanged { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) - { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; - } + } - /// - /// The name of the current Object type at runtime. - /// + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6 + { public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IDescriptionChanged + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IUnionMemberAdded + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IUnionMemberRemoved + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors, IPersistedQueryValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1 + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IPersistedQueryValidationError + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IMcpFeatureCollectionValidationError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IOpenApiCollectionValidationError + { + } - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, ISchemaChangeViolationError + { + } - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IInvalidGraphQLSchemaError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_2 { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String oldType, global::System.String newType) - { - this.__typename = __typename; - Severity = severity; - OldType = oldType; - NewType = newType; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String OldType { get; } - public global::System.String NewType { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_2, IMcpFeatureCollectionValidationError + { + } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_3 + { + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_3, IOpenApiCollectionValidationError + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4 + { + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && OldType.Equals(other.OldType) && NewType.Equals(other.NewType); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IPersistedQueryValidationError + { + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IMcpFeatureCollectionValidationError + { + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IOpenApiCollectionValidationError + { + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, ISchemaChangeViolationError + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IOperationsAreNotAllowedError + { + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * OldType.GetHashCode(); - hash ^= 397 * NewType.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, ISchemaVersionSyntaxError + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IInvalidGraphQLSchemaError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) - { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; - } + } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection + { + public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } + } - if (ReferenceEquals(this, other)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection + { + } - if (other.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + { + public global::System.String Name { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection + { + } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + { + public global::System.String HttpMethod { get; } + public global::System.String Route { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + public global::System.String? Path { get; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries + { + public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } + public global::System.String Message { get; } + public global::System.String Hash { get; } + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 + { + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyList Entities { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes : ISchemaChangeLogEntry + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IDirectiveModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IEnumModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IInputObjectModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IInterfaceModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IObjectModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IScalarModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ITypeSystemMemberAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ISchemaChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IUnionModifiedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors + { + public global::System.String Message { get; } + public global::System.String? Code { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1 + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, IDeprecatedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, ITypeChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_5 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6 + { + public global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_1 + { + public global::System.Int32 Column { get; } + public global::System.Int32 Line { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_1 + { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged + public partial class ValidateFusionConfigurationPublishResult : global::System.IEquatable, IValidateFusionConfigurationPublishResult { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.Collections.Generic.IReadOnlyList changes) + public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition validateFusionConfigurationComposition) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - Changes = changes; + ValidateFusionConfigurationComposition = validateFusionConfigurationComposition; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition ValidateFusionConfigurationComposition { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged? other) + public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublishResult? other) { if (ReferenceEquals(null, other)) { @@ -128116,7 +129139,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (ValidateFusionConfigurationComposition.Equals(other.ValidateFusionConfigurationComposition)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128136,7 +129159,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged)obj); + return Equals((ValidateFusionConfigurationPublishResult)obj); } public override global::System.Int32 GetHashCode() @@ -128144,15 +129167,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * ValidateFusionConfigurationComposition.GetHashCode(); return hash; } } @@ -128160,27 +129175,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved + public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String name, global::System.String typeName) + public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Name = name; - TypeName = typeName; + Errors = errors; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String Name { get; } - public global::System.String TypeName { get; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved? other) + public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload? other) { if (ReferenceEquals(null, other)) { @@ -128197,7 +129201,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && Name.Equals(other.Name) && TypeName.Equals(other.TypeName); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128217,7 +129221,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved)obj); + return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload)obj); } public override global::System.Int32 GetHashCode() @@ -128225,11 +129229,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); + if (Errors != null) + { + foreach (var Errors_elm in Errors) + { + hash ^= 397 * Errors_elm.GetHashCode(); + } + } + return hash; } } @@ -128237,25 +129244,21 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged + public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged? other) + public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation? other) { if (ReferenceEquals(null, other)) { @@ -128272,7 +129275,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128292,7 +129295,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged)obj); + return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); } public override global::System.Int32 GetHashCode() @@ -128301,17 +129304,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -128319,23 +129312,21 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded + public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Location = location; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded? other) + public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) { if (ReferenceEquals(null, other)) { @@ -128352,7 +129343,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128372,7 +129363,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded)obj); + return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); } public override global::System.Int32 GetHashCode() @@ -128381,8 +129372,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } @@ -128390,23 +129380,21 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved + public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation location) + public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) { this.__typename = __typename; - Severity = severity; - Location = location; + Message = message; } /// /// The name of the current Object type at runtime. /// public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Location { get; } + public global::System.String Message { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved? other) + public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) { if (ReferenceEquals(null, other)) { @@ -128423,7 +129411,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Location.Equals(other.Location); + return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128443,7 +129431,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved)obj); + return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); } public override global::System.Int32 GetHashCode() @@ -128452,34 +129440,68 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin { int hash = 5; hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Location.GetHashCode(); + hash ^= 397 * Message.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublishResult + { + public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition ValidateFusionConfigurationComposition { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition + { + public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IUnauthorizedOperation + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 + public partial class SelectMockSchemaPromptQueryResult : global::System.IEquatable, ISelectMockSchemaPromptQueryResult { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? apiById) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + ApiById = apiById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? ApiById { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -128496,7 +129518,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128516,7 +129538,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1)obj); + return Equals((SelectMockSchemaPromptQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -128524,16 +129546,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (ApiById != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * ApiById.GetHashCode(); } return hash; @@ -128543,23 +129558,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded + public partial class SelectMockSchemaPromptQuery_ApiById_Api : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_Api { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? mockSchemas) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + MockSchemas = mockSchemas; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MockSchemas { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_Api? other) { if (ReferenceEquals(null, other)) { @@ -128576,7 +129584,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (((MockSchemas is null && other.MockSchemas is null) || MockSchemas != null && MockSchemas.Equals(other.MockSchemas))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128596,7 +129604,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_Api)obj); } public override global::System.Int32 GetHashCode() @@ -128604,35 +129612,39 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + if (MockSchemas != null) + { + hash ^= 397 * MockSchemas.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.Collections.Generic.IReadOnlyList changes) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo pageInfo) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - Changes = changes; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection? other) { if (ReferenceEquals(null, other)) { @@ -128649,7 +129661,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128669,7 +129681,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection)obj); } public override global::System.Int32 GetHashCode() @@ -128677,38 +129689,43 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - foreach (var Changes_elm in Changes) + if (Edges != null) { - hash ^= 397 * Changes_elm.GetHashCode(); + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } } + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node node) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge? other) { if (ReferenceEquals(null, other)) { @@ -128725,7 +129742,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128745,7 +129762,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge)obj); } public override global::System.Int32 GetHashCode() @@ -128753,35 +129770,46 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -128798,7 +129826,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128818,7 +129846,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -128826,16 +129854,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) { - hash ^= 397 * Old.GetHashCode(); + hash ^= 397 * EndCursor.GetHashCode(); } - if (New != null) + if (StartCursor != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * StartCursor.GetHashCode(); } return hash; @@ -128845,27 +129873,30 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Id = id; + Name = name; + CreatedAt = createdAt; + CreatedBy = createdBy; + ModifiedAt = modifiedAt; + ModifiedBy = modifiedBy; + DownstreamUrl = downstreamUrl; + Url = url; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } + public global::System.DateTimeOffset ModifiedAt { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } + public global::System.Uri DownstreamUrl { get; } + public global::System.String Url { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema? other) { if (ReferenceEquals(null, other)) { @@ -128882,7 +129913,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128902,7 +129933,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema)obj); } public override global::System.Int32 GetHashCode() @@ -128910,11 +129941,14 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * CreatedBy.GetHashCode(); + hash ^= 397 * ModifiedAt.GetHashCode(); + hash ^= 397 * ModifiedBy.GetHashCode(); + hash ^= 397 * DownstreamUrl.GetHashCode(); + hash ^= 397 * Url.GetHashCode(); return hash; } } @@ -128922,27 +129956,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; + Username = username; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -128959,7 +129982,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -128979,7 +130002,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -128987,11 +130010,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); + hash ^= 397 * Username.GetHashCode(); return hash; } } @@ -128999,27 +130018,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged + public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; + Username = username; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } + public global::System.String Username { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged? other) + public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo? other) { if (ReferenceEquals(null, other)) { @@ -129036,7 +130044,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return (Username.Equals(other.Username)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129056,7 +130064,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged)obj); + return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo)obj); } public override global::System.Int32 GetHashCode() @@ -129064,41 +130072,170 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - + hash ^= 397 * Username.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQueryResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? ApiById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById + { + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MockSchemas { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_Api : ISelectMockSchemaPromptQuery_ApiById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection : ISelectMockSchemaPromptQuery_ApiById_MockSchemas + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockCommand_MockEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges : ISelectMockCommand_MockEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockCommand_Mock : IMockSchemaDetailPrompt + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node : ISelectMockCommand_Mock + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy + { + public global::System.String Username { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy + { + public global::System.String Username { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 + public partial class PageClientVersionDetailQueryResult : global::System.IEquatable, IPageClientVersionDetailQueryResult { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PageClientVersionDetailQueryResult(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? node) { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; + Node = node; } /// - /// The name of the current Object type at runtime. + /// Fetches an object given its ID. /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? Node { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -129115,7 +130252,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return (((Node is null && other.Node is null) || Node != null && Node.Equals(other.Node))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129135,7 +130272,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3)obj); + return Equals((PageClientVersionDetailQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -129143,16 +130280,9 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) + if (Node != null) { - hash ^= 397 * New.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); } return hash; @@ -129162,27 +130292,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 + public partial class PageClientVersionDetailQuery_Node_Api : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Api { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public PageClientVersionDetailQuery_Node_Api() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -129199,7 +130315,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129219,7 +130335,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1)obj); + return Equals((PageClientVersionDetailQuery_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -129227,11 +130343,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -129239,27 +130350,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 + public partial class PageClientVersionDetailQuery_Node_ApiDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiDocument { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public PageClientVersionDetailQuery_Node_ApiDocument() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ApiDocument? other) { if (ReferenceEquals(null, other)) { @@ -129276,7 +130373,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129296,7 +130393,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1)obj); + return Equals((PageClientVersionDetailQuery_Node_ApiDocument)obj); } public override global::System.Int32 GetHashCode() @@ -129304,11 +130401,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -129316,23 +130408,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded + public partial class PageClientVersionDetailQuery_Node_ApiKey : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ApiKey { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public PageClientVersionDetailQuery_Node_ApiKey() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ApiKey? other) { if (ReferenceEquals(null, other)) { @@ -129349,7 +130431,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129369,7 +130451,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded)obj); + return Equals((PageClientVersionDetailQuery_Node_ApiKey)obj); } public override global::System.Int32 GetHashCode() @@ -129377,9 +130459,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -129387,23 +130466,16 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved + public partial class PageClientVersionDetailQuery_Node_Client : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Client { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public PageClientVersionDetailQuery_Node_Client(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? versions) { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; + Versions = versions; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? Versions { get; } - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -129420,7 +130492,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return (((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129440,7 +130512,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved)obj); + return Equals((PageClientVersionDetailQuery_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -129448,9 +130520,11 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); + if (Versions != null) + { + hash ^= 397 * Versions.GetHashCode(); + } + return hash; } } @@ -129458,27 +130532,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged + public partial class PageClientVersionDetailQuery_Node_ClientChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientChangeLog { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public PageClientVersionDetailQuery_Node_ClientChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -129495,7 +130555,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129515,7 +130575,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged)obj); + return Equals((PageClientVersionDetailQuery_Node_ClientChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -129523,15 +130583,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -129539,23 +130590,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded + public partial class PageClientVersionDetailQuery_Node_ClientDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientDeployment { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PageClientVersionDetailQuery_Node_ClientDeployment() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientDeployment? other) { if (ReferenceEquals(null, other)) { @@ -129572,7 +130613,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129592,7 +130633,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded)obj); + return Equals((PageClientVersionDetailQuery_Node_ClientDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -129600,9 +130641,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -129610,23 +130648,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved + public partial class PageClientVersionDetailQuery_Node_ClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_ClientVersion { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PageClientVersionDetailQuery_Node_ClientVersion() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_ClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -129643,7 +130671,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129663,7 +130691,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved)obj); + return Equals((PageClientVersionDetailQuery_Node_ClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -129671,9 +130699,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -129681,25 +130706,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 + public partial class PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics : global::System.IEquatable, IPageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics? other) { if (ReferenceEquals(null, other)) { @@ -129716,7 +130729,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129736,7 +130749,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4)obj); + return Equals((PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics)obj); } public override global::System.Int32 GetHashCode() @@ -129744,18 +130757,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -129763,27 +130764,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 + public partial class PageClientVersionDetailQuery_Node_Environment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Environment { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public PageClientVersionDetailQuery_Node_Environment() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Environment? other) { if (ReferenceEquals(null, other)) { @@ -129800,7 +130787,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129820,7 +130807,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2)obj); + return Equals((PageClientVersionDetailQuery_Node_Environment)obj); } public override global::System.Int32 GetHashCode() @@ -129828,11 +130815,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -129840,27 +130822,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 + public partial class PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_FusionConfigurationChangeLog { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String typeName, global::System.String fieldName) + public PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - TypeName = typeName; - FieldName = fieldName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String TypeName { get; } - public global::System.String FieldName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog? other) { if (ReferenceEquals(null, other)) { @@ -129877,7 +130845,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && TypeName.Equals(other.TypeName) && FieldName.Equals(other.FieldName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129897,7 +130865,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2)obj); + return Equals((PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog)obj); } public override global::System.Int32 GetHashCode() @@ -129905,11 +130873,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); return hash; } } @@ -129917,23 +130880,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 + public partial class PageClientVersionDetailQuery_Node_FusionConfigurationDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_FusionConfigurationDeployment { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public PageClientVersionDetailQuery_Node_FusionConfigurationDeployment() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_FusionConfigurationDeployment? other) { if (ReferenceEquals(null, other)) { @@ -129950,7 +130903,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -129970,7 +130923,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1)obj); + return Equals((PageClientVersionDetailQuery_Node_FusionConfigurationDeployment)obj); } public override global::System.Int32 GetHashCode() @@ -129978,9 +130931,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -129988,23 +130938,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 + public partial class PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String interfaceName) + public PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition() { - this.__typename = __typename; - Severity = severity; - InterfaceName = interfaceName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String InterfaceName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130021,7 +130961,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && InterfaceName.Equals(other.InterfaceName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130041,7 +130981,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130049,9 +130989,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * InterfaceName.GetHashCode(); return hash; } } @@ -130059,27 +130996,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 + public partial class PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String coordinate, global::System.String fieldName, global::System.Collections.Generic.IReadOnlyList changes) + public PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition() { - this.__typename = __typename; - Severity = severity; - Coordinate = coordinate; - FieldName = fieldName; - Changes = changes; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String Coordinate { get; } - public global::System.String FieldName { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130096,7 +131019,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && Coordinate.Equals(other.Coordinate) && FieldName.Equals(other.FieldName) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Changes, other.Changes); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130116,7 +131039,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130124,15 +131047,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * Coordinate.GetHashCode(); - hash ^= 397 * FieldName.GetHashCode(); - foreach (var Changes_elm in Changes) - { - hash ^= 397 * Changes_elm.GetHashCode(); - } - return hash; } } @@ -130140,25 +131054,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 + public partial class PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130175,7 +131077,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130195,7 +131097,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130203,18 +131105,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -130222,25 +131112,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 + public partial class PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String? old, global::System.String? @new) + public PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition() { - this.__typename = __typename; - Severity = severity; - Old = old; - New = @new; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String? Old { get; } - public global::System.String? New { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130257,7 +131135,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && ((Old is null && other.Old is null) || Old != null && Old.Equals(other.Old)) && ((New is null && other.New is null) || New != null && New.Equals(other.New)); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130277,7 +131155,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130285,18 +131163,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - if (Old != null) - { - hash ^= 397 * Old.GetHashCode(); - } - - if (New != null) - { - hash ^= 397 * New.GetHashCode(); - } - return hash; } } @@ -130304,23 +131170,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded + public partial class PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130337,7 +131193,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130357,7 +131213,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130365,9 +131221,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -130375,23 +131228,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved + public partial class PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity severity, global::System.String typeName) + public PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition() { - this.__typename = __typename; - Severity = severity; - TypeName = typeName; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Severity { get; } - public global::System.String TypeName { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130408,7 +131251,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (__typename.Equals(other.__typename)) && Severity.Equals(other.Severity) && TypeName.Equals(other.TypeName); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130428,7 +131271,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130436,9 +131279,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Severity.GetHashCode(); - hash ^= 397 * TypeName.GetHashCode(); return hash; } } @@ -130446,18 +131286,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation + public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130474,7 +131309,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130494,7 +131329,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130502,8 +131337,6 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } @@ -130511,18 +131344,13 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : global::System.IEquatable, IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation + public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition { - public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(global::System.Int32 column, global::System.Int32 line) + public PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition() { - Column = column; - Line = line; } - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } - - public virtual global::System.Boolean Equals(OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation? other) + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition? other) { if (ReferenceEquals(null, other)) { @@ -130539,7 +131367,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return (global::System.Object.Equals(Column, other.Column)) && global::System.Object.Equals(Line, other.Line); + return true; } public override global::System.Boolean Equals(global::System.Object? obj) @@ -130559,7 +131387,7 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin return false; } - return Equals((OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation)obj); + return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition)obj); } public override global::System.Int32 GetHashCode() @@ -130567,1747 +131395,2113 @@ public OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishin unchecked { int hash = 5; - hash ^= 397 * Column.GetHashCode(); - hash ^= 397 * Line.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChangedResult + public partial class PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition { - public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged OnFusionConfigurationPublishingTaskChanged { get; } - } + public PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged - { - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState State { get; } - public global::System.String __typename { get; } - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFusionConfigurationPublishingFailed - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Failed { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingFailed - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFusionConfigurationPublishingSuccess - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Success { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationPublishingSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationPublishingSuccess - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFusionConfigurationValidationFailed - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Failed { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationFailed - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFusionConfigurationValidationSuccess - { - /// - /// The name of the current Object type at runtime. - /// - public global::System.String Success { get; } - public global::System.Collections.Generic.IReadOnlyList Changes { get; } - } + return Equals((PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_FusionConfigurationValidationSuccess : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IFusionConfigurationValidationSuccess - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_OperationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IOperationInProgress + public partial class PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition { - } + public PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskApproved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskApproved - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsQueued : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsQueued - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ProcessingTaskIsReady : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IProcessingTaskIsReady - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_ValidationInProgress : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IValidationInProgress - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_WaitForApproval : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged, IWaitForApproval - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors - { - public global::System.String Message { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ConcurrentOperationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors, IInvalidGraphQLSchemaError - { - } + return Equals((PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ProcessingTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_ReadyTimeoutError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors + public partial class PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition { - } + public PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1 - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_InvalidGraphQLSchemaError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IInvalidGraphQLSchemaError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IMcpFeatureCollectionValidationError - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IOpenApiCollectionValidationError - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IPersistedQueryValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_SchemaVersionChangeViolationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, ISchemaVersionChangeViolationError - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_UnexpectedProcessingError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_1, IUnexpectedProcessingError - { - } + return Equals((PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes : ISchemaChangeLogEntry - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IDirectiveModifiedChange + public partial class PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition { - } + public PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IEnumModifiedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IInputObjectModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IInterfaceModifiedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IObjectModifiedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IScalarModifiedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ITypeSystemMemberAddedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ISchemaChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, ITypeSystemMemberRemovedChange - { - } + return Equals((PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes, IUnionModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment + public partial class PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition : global::System.IEquatable, IPageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition { - } + public PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_ClientDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_FusionConfigurationDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_McpFeatureCollectionDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_OpenApiCollectionDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_SchemaDeployment : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors_GraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Errors - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + return Equals((PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 + public partial class PageClientVersionDetailQuery_Node_Group : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Group { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + public PageClientVersionDetailQuery_Node_Group() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Group? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client_Client : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Client - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_PersistedQueryValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes : ISchemaChangeLogEntry - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IDirectiveModifiedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IEnumModifiedChange - { - } + return Equals((PageClientVersionDetailQuery_Node_Group)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IInputObjectModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IInterfaceModifiedChange + public partial class PageClientVersionDetailQuery_Node_McpFeatureCollection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollection { - } + public PageClientVersionDetailQuery_Node_McpFeatureCollection() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IObjectModifiedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IScalarModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ITypeSystemMemberAddedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ISchemaChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, ITypeSystemMemberRemovedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes, IUnionModifiedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes - { - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentAdded - { - } + return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollection)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IArgumentRemoved + public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog { - } + public PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDescriptionChanged - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDirectiveLocationAdded - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes, IDirectiveLocationRemoved - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1 - { - public global::System.String __typename { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IDescriptionChanged - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueAdded - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueChanged - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_1, IEnumValueRemoved - { - } + return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2 - { - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IDescriptionChanged + public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment { - } + public PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IFieldAddedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IFieldRemovedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_2, IInputFieldChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3 - { - public global::System.String __typename { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IDescriptionChanged - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IFieldAddedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IFieldRemovedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IInterfaceImplementationAdded - { - } + return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IInterfaceImplementationRemoved - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IOutputFieldChanged + public partial class PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_McpFeatureCollectionVersion { - } + public PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IPossibleTypeAdded - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_3, IPossibleTypeRemoved - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4 - { - public global::System.String __typename { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IDescriptionChanged - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IFieldAddedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IFieldRemovedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IInterfaceImplementationAdded - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IInterfaceImplementationRemoved - { - } + return Equals((PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_4, IOutputFieldChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_5 + public partial class PageClientVersionDetailQuery_Node_OpenApiCollection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollection { - public global::System.String __typename { get; } - } + public PageClientVersionDetailQuery_Node_OpenApiCollection() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_5, IDescriptionChanged - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6 - { - public global::System.String __typename { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IDescriptionChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IUnionMemberAdded - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_6, IUnionMemberRemoved - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors, IPersistedQueryValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IPersistedQueryValidationError - { - } + return Equals((PageClientVersionDetailQuery_Node_OpenApiCollection)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, ISchemaChangeViolationError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IInvalidGraphQLSchemaError + public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog { - } + public PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IOpenApiCollectionValidationError - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_1, IMcpFeatureCollectionValidationError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_2 - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_2, IMcpFeatureCollectionValidationError - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_3 - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_3, IOpenApiCollectionValidationError - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_PersistedQueryValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IPersistedQueryValidationError - { - } + return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaChangeViolationError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, ISchemaChangeViolationError - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OperationsAreNotAllowedError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IOperationsAreNotAllowedError + public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionDeployment { - } + public PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_SchemaVersionSyntaxError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, ISchemaVersionSyntaxError - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_InvalidGraphQLSchemaError_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IInvalidGraphQLSchemaError - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_OpenApiCollectionValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IOpenApiCollectionValidationError - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_McpFeatureCollectionValidationError_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_4, IMcpFeatureCollectionValidationError - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection_McpFeatureCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_McpFeatureCollection - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities - { - public global::System.String Name { get; } - } + return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities - { - public global::System.String Name { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection + public partial class PageClientVersionDetailQuery_Node_OpenApiCollectionVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OpenApiCollectionVersion { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + public PageClientVersionDetailQuery_Node_OpenApiCollectionVersion() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection_OpenApiCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_OpenApiCollection - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OpenApiCollectionVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 - { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 - { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 - { - public global::System.String Name { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } - public global::System.String? Path { get; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; } - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_PersistedQueryError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes - { - public global::System.String __typename { get; } - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentAdded - { - } + return Equals((PageClientVersionDetailQuery_Node_OpenApiCollectionVersion)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IArgumentRemoved + public partial class PageClientVersionDetailQuery_Node_Organization : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Organization { - } + public PageClientVersionDetailQuery_Node_Organization() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDescriptionChanged - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Organization? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDirectiveLocationAdded - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes, IDirectiveLocationRemoved - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1 - { - public global::System.String __typename { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IDescriptionChanged - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueAdded - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueChanged - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_1, IEnumValueRemoved - { - } + return Equals((PageClientVersionDetailQuery_Node_Organization)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2 - { - public global::System.String __typename { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IDescriptionChanged + public partial class PageClientVersionDetailQuery_Node_OrganizationMember : global::System.IEquatable, IPageClientVersionDetailQuery_Node_OrganizationMember { - } + public PageClientVersionDetailQuery_Node_OrganizationMember() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IFieldAddedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_OrganizationMember? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IFieldRemovedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_2, IInputFieldChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3 - { - public global::System.String __typename { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IDescriptionChanged - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IFieldAddedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IFieldRemovedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IInterfaceImplementationAdded - { - } + return Equals((PageClientVersionDetailQuery_Node_OrganizationMember)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IInterfaceImplementationRemoved - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IOutputFieldChanged + public partial class PageClientVersionDetailQuery_Node_SchemaChangeLog : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaChangeLog { - } + public PageClientVersionDetailQuery_Node_SchemaChangeLog() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IPossibleTypeAdded - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaChangeLog? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_3, IPossibleTypeRemoved - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4 - { - public global::System.String __typename { get; } - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IDescriptionChanged - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IFieldAddedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IFieldRemovedChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IInterfaceImplementationAdded - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IInterfaceImplementationRemoved - { - } + return Equals((PageClientVersionDetailQuery_Node_SchemaChangeLog)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_4, IOutputFieldChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_5 + public partial class PageClientVersionDetailQuery_Node_SchemaDeployment : global::System.IEquatable, IPageClientVersionDetailQuery_Node_SchemaDeployment { - public global::System.String __typename { get; } - } + public PageClientVersionDetailQuery_Node_SchemaDeployment() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_5, IDescriptionChanged - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_SchemaDeployment? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6 - { - public global::System.String __typename { get; } - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IDescriptionChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IUnionMemberAdded - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Changes_Changes_6, IUnionMemberRemoved - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes - { - public global::System.String __typename { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, IDeprecatedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, IDescriptionChanged - { - } + return Equals((PageClientVersionDetailQuery_Node_SchemaDeployment)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes, ITypeChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1 + public partial class PageClientVersionDetailQuery_Node_Stage : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Stage { - } + public PageClientVersionDetailQuery_Node_Stage() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1, IDeprecatedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_1, IDescriptionChanged - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2 - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, IDeprecatedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, IDescriptionChanged - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_2, ITypeChanged - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3 - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentAdded - { - } + return Equals((PageClientVersionDetailQuery_Node_Stage)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentChanged - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IArgumentRemoved + public partial class PageClientVersionDetailQuery_Node_User : global::System.IEquatable, IPageClientVersionDetailQuery_Node_User { - } + public PageClientVersionDetailQuery_Node_User() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DeprecatedChange_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IDeprecatedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_User? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, IDescriptionChanged - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_TypeChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_3, ITypeChanged - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client - { - public global::System.String Id { get; } - public global::System.String Name { get; } - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client_Client : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Client - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries - { - public global::System.Collections.Generic.IReadOnlyList DeployedTags { get; } - public global::System.String Message { get; } - public global::System.String Hash { get; } - public global::System.Collections.Generic.IReadOnlyList Errors { get; } - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries_PersistedQueryValidationFailed : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Queries - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes : ISchemaChangeLogEntry - { - } + return Equals((PageClientVersionDetailQuery_Node_User)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_DirectiveModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IDirectiveModifiedChange - { + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_EnumModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IEnumModifiedChange + public partial class PageClientVersionDetailQuery_Node_Workspace : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Workspace { - } + public PageClientVersionDetailQuery_Node_Workspace() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InputObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IInputObjectModifiedChange - { - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Workspace? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_InterfaceModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IInterfaceModifiedChange - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ObjectModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IObjectModifiedChange - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_ScalarModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IScalarModifiedChange - { - } + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ITypeSystemMemberAddedChange - { - } + public override global::System.Boolean Equals(global::System.Object? obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ISchemaChange - { - } + if (ReferenceEquals(this, obj)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_TypeSystemMemberRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, ITypeSystemMemberRemovedChange - { - } + if (obj.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_UnionModifiedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes, IUnionModifiedChange - { - } + return Equals((PageClientVersionDetailQuery_Node_Workspace)obj); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors - { - public global::System.String Message { get; } - public global::System.String? Code { get; } + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors_GraphQLSchemaError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Errors + public partial class PageClientVersionDetailQuery_Node_WorkspaceDocument : global::System.IEquatable, IPageClientVersionDetailQuery_Node_WorkspaceDocument { - } + public PageClientVersionDetailQuery_Node_WorkspaceDocument() + { + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections - { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } - } + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_WorkspaceDocument? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + 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_WorkspaceDocument)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections + public partial class PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_ClientVersionConnection { + public PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo pageInfo, global::System.Collections.Generic.IReadOnlyList? edges) + { + PageInfo = pageInfo; + Edges = edges; + } + + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo PageInfo { get; } + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (PageInfo.Equals(other.PageInfo)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges); + } + + 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_Versions_ClientVersionConnection)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * PageInfo.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 + public partial class PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } + public PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) + { + HasNextPage = hasNextPage; + EndCursor = endCursor; + } + + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); + } + + 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_Versions_PageInfo_PageInfo)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + return hash; + } + } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge + { + public PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) + { + Cursor = cursor; + Node = node; + } + + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + } + + 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_Versions_Edges_ClientVersionEdge)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion + { + public PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + { + Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; + } + + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + } + + 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_Versions_Edges_Node_ClientVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) + { + hash ^= 397 * PublishedTo_elm.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion + { + public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) + { + Stage = stage; + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); + } + + 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_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + if (Stage != null) + { + hash ^= 397 * Stage.GetHashCode(); + } + + return hash; + } + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 + public partial class PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage { + public PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) + { + Name = name; + } + + public global::System.String Name { get; } + + public virtual global::System.Boolean Equals(PageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)); + } + + 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_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors + public partial interface IPageClientVersionDetailQueryResult { + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? Node { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// The node interface is implemented by entities that have a global unique identifier. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationDocumentError + public partial interface IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors, IMcpFeatureCollectionValidationEntityValidationError + public partial interface IPageClientVersionDetailQuery_Node_Api : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1 + public partial interface IPageClientVersionDetailQuery_Node_ApiDocument : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationDocumentError + public partial interface IPageClientVersionDetailQuery_Node_ApiKey : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_1, IOpenApiCollectionValidationEntityValidationError + public partial interface IPageClientVersionDetailQuery_Node_Client : IPageClientVersionDetailQuery_Node { + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? Versions { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations + public partial interface IPageClientVersionDetailQuery_Node_ClientChangeLog : IPageClientVersionDetailQuery_Node { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Queries_Errors_Locations + public partial interface IPageClientVersionDetailQuery_Node_ClientDeployment : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes + public partial interface IPageClientVersionDetailQuery_Node_ClientVersion : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DeprecatedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, IDeprecatedChange + public partial interface IPageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_Environment : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes_TypeChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Changes_Changes_Changes_Changes, ITypeChanged + public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationChangeLog : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes + public partial interface IPageClientVersionDetailQuery_Node_FusionConfigurationDeployment : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentAdded + public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentChanged + public partial interface IPageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_ArgumentRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IArgumentRemoved + public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDirectiveLocationAdded + public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes, IDirectiveLocationRemoved + public partial interface IPageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1 + public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueAdded + public partial interface IPageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueChanged + public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_EnumValueRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_1, IEnumValueRemoved + public partial interface IPageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2 + public partial interface IPageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IFieldAddedChange + public partial interface IPageClientVersionDetailQuery_Node_Group : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IFieldRemovedChange + public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollection : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_2, IInputFieldChanged + public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3 + public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_3 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_McpFeatureCollectionVersion : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IFieldAddedChange + public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollection : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IFieldRemovedChange + public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationAdded + public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionDeployment : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IInterfaceImplementationRemoved + public partial interface IPageClientVersionDetailQuery_Node_OpenApiCollectionVersion : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IOutputFieldChanged + public partial interface IPageClientVersionDetailQuery_Node_Organization : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IPossibleTypeAdded + public partial interface IPageClientVersionDetailQuery_Node_OrganizationMember : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_PossibleTypeRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_3, IPossibleTypeRemoved + public partial interface IPageClientVersionDetailQuery_Node_SchemaChangeLog : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4 + public partial interface IPageClientVersionDetailQuery_Node_SchemaDeployment : IPageClientVersionDetailQuery_Node { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_4 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_Stage : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldAddedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IFieldAddedChange + public partial interface IPageClientVersionDetailQuery_Node_User : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_FieldRemovedChange_2 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IFieldRemovedChange + public partial interface IPageClientVersionDetailQuery_Node_Workspace : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationAdded + public partial interface IPageClientVersionDetailQuery_Node_WorkspaceDocument : IPageClientVersionDetailQuery_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IInterfaceImplementationRemoved + public partial interface IPageClientVersionDetailQuery_Node_Versions { + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo PageInfo { get; } + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_OutputFieldChanged_1 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_4, IOutputFieldChanged + public partial interface IPageClientVersionDetailQuery_Node_Versions_ClientVersionConnection : IPageClientVersionDetailQuery_Node_Versions { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_5 + public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo { - public global::System.String __typename { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_5 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_5, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo : IPageClientVersionDetailQuery_Node_Versions_PageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6 + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge { - public global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_DescriptionChanged_6 : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IDescriptionChanged + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge : IPageClientVersionDetailQuery_Node_Versions_Edges { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberAdded : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IUnionMemberAdded + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node { + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_UnionMemberRemoved : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Changes_Changes_6, IUnionMemberRemoved + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_ClientVersion : IPageClientVersionDetailQuery_Node_Versions_Edges_Node { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_1 + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage { - public global::System.Int32 Column { get; } - public global::System.Int32 Line { get; } + public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_Errors_Locations_1 + public partial interface IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : IPageClientVersionDetailQuery_Node_Versions_Edges_Node_PublishedTo_Stage { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishResult : global::System.IEquatable, ICancelFusionConfigurationPublishResult + public partial class SelectClientPromptQueryResult : global::System.IEquatable, ISelectClientPromptQueryResult { - public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition cancelFusionConfigurationComposition) + public SelectClientPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? apiById) { - CancelFusionConfigurationComposition = cancelFusionConfigurationComposition; + ApiById = apiById; } - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition CancelFusionConfigurationComposition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? ApiById { get; } - public virtual global::System.Boolean Equals(CancelFusionConfigurationPublishResult? other) + public virtual global::System.Boolean Equals(SelectClientPromptQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -132324,7 +133518,7 @@ public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL return false; } - return (CancelFusionConfigurationComposition.Equals(other.CancelFusionConfigurationComposition)); + return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132344,7 +133538,7 @@ public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL return false; } - return Equals((CancelFusionConfigurationPublishResult)obj); + return Equals((SelectClientPromptQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -132352,7 +133546,11 @@ public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL unchecked { int hash = 5; - hash ^= 397 * CancelFusionConfigurationComposition.GetHashCode(); + if (ApiById != null) + { + hash ^= 397 * ApiById.GetHashCode(); + } + return hash; } } @@ -132360,16 +133558,16 @@ public CancelFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload + public partial class SelectClientPromptQuery_ApiById_Api : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Api { - public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) + public SelectClientPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? clients) { - Errors = errors; + Clients = clients; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? Clients { get; } - public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Api? other) { if (ReferenceEquals(null, other)) { @@ -132386,7 +133584,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Can return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (((Clients is null && other.Clients is null) || Clients != null && Clients.Equals(other.Clients))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132406,7 +133604,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Can return false; } - return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload)obj); + return Equals((SelectClientPromptQuery_ApiById_Api)obj); } public override global::System.Int32 GetHashCode() @@ -132414,12 +133612,9 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Can unchecked { int hash = 5; - if (Errors != null) + if (Clients != null) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Clients.GetHashCode(); } return hash; @@ -132428,22 +133623,28 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Can } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation + public partial class SelectClientPromptQuery_ApiById_Clients_ClientsConnection : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_ClientsConnection { - public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_ClientsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_ClientsConnection? other) { if (ReferenceEquals(null, other)) { @@ -132460,7 +133661,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132480,7 +133681,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_ClientsConnection)obj); } public override global::System.Int32 GetHashCode() @@ -132488,30 +133689,43 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge { - public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node node) { - this.__typename = __typename; - Message = message; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge? other) { if (ReferenceEquals(null, other)) { @@ -132528,7 +133742,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132548,7 +133762,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -132556,30 +133770,46 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError + public partial class SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo { - public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - this.__typename = __typename; - Message = message; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist prior the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -132596,7 +133826,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132616,7 +133846,7 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err return false; } - return Equals((CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -132624,79 +133854,41 @@ public CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Err unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublishResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition CancelFusionConfigurationComposition { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition - { - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IUnauthorizedOperation - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFusionConfigurationRequestNotFoundError : 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 ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishResult : global::System.IEquatable, ICommitFusionConfigurationPublishResult + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Client { - public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish commitFusionConfigurationPublish) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(global::System.String id, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? api, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? versions) { - CommitFusionConfigurationPublish = commitFusionConfigurationPublish; + Id = id; + Name = name; + Api = api; + Versions = versions; } - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish CommitFusionConfigurationPublish { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? Api { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? Versions { get; } - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublishResult? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client? other) { if (ReferenceEquals(null, other)) { @@ -132713,7 +133905,7 @@ public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL return false; } - return (CommitFusionConfigurationPublish.Equals(other.CommitFusionConfigurationPublish)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && ((Api is null && other.Api is null) || Api != null && Api.Equals(other.Api)) && ((Versions is null && other.Versions is null) || Versions != null && Versions.Equals(other.Versions)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132733,7 +133925,7 @@ public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL return false; } - return Equals((CommitFusionConfigurationPublishResult)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client)obj); } public override global::System.Int32 GetHashCode() @@ -132741,7 +133933,18 @@ public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL unchecked { int hash = 5; - hash ^= 397 * CommitFusionConfigurationPublish.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + if (Api != null) + { + hash ^= 397 * Api.GetHashCode(); + } + + if (Versions != null) + { + hash ^= 397 * Versions.GetHashCode(); + } + return hash; } } @@ -132749,16 +133952,18 @@ public CommitFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandL // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api { - public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload(global::System.Collections.Generic.IReadOnlyList? errors) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api(global::System.String name, global::System.Collections.Generic.IReadOnlyList path) { - Errors = errors; + Name = name; + Path = path; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api? other) { if (ReferenceEquals(null, other)) { @@ -132775,7 +133980,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitF return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Name.Equals(other.Name)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132795,7 +134000,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitF return false; } - return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api)obj); } public override global::System.Int32 GetHashCode() @@ -132803,12 +134008,10 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitF unchecked { int hash = 5; - if (Errors != null) + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Path_elm.GetHashCode(); } return hash; @@ -132817,22 +134020,28 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitF } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection { - public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection? other) { if (ReferenceEquals(null, other)) { @@ -132849,7 +134058,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132869,7 +134078,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection)obj); } public override global::System.Int32 GetHashCode() @@ -132877,30 +134086,43 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge { - public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node node) { - this.__typename = __typename; - Message = message; + Cursor = cursor; + Node = node; } /// - /// The name of the current Object type at runtime. + /// A cursor for use in pagination. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge? other) { if (ReferenceEquals(null, other)) { @@ -132917,7 +134139,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -132937,7 +134159,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge)obj); } public override global::System.Int32 GetHashCode() @@ -132945,30 +134167,36 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo { - public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo(global::System.Boolean hasNextPage, global::System.String? endCursor) { - this.__typename = __typename; - Message = message; + HasNextPage = hasNextPage; + EndCursor = endCursor; } /// - /// The name of the current Object type at runtime. + /// Indicates whether more edges exist following the set defined by the clients arguments. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -132985,7 +134213,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::System.Object.Equals(HasNextPage, other.HasNextPage)) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133005,7 +134233,7 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ return false; } - return Equals((CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -133013,69 +134241,104 @@ public CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_ unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublishResult + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion { - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish CommitFusionConfigurationPublish { get; } - } + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion(global::System.String id, global::System.DateTimeOffset createdAt, global::System.String tag, global::System.Collections.Generic.IReadOnlyList publishedTo) + { + Id = id; + CreatedAt = createdAt; + Tag = tag; + PublishedTo = publishedTo; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish - { - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish - { - } + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IUnauthorizedOperation - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IFusionConfigurationRequestNotFoundError - { - } + return (Id.Equals(other.Id)) && CreatedAt.Equals(other.CreatedAt) && Tag.Equals(other.Tag) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(PublishedTo, other.PublishedTo); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError : ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors, IInvalidProcessingStateTransitionError - { + 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((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * CreatedAt.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + foreach (var PublishedTo_elm in PublishedTo) + { + hash ^= 397 * PublishedTo_elm.GetHashCode(); + } + + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishResult : global::System.IEquatable, IStartFusionConfigurationPublishResult + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion { - public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition startFusionConfigurationComposition) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? stage) { - StartFusionConfigurationComposition = startFusionConfigurationComposition; + Stage = stage; } - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition StartFusionConfigurationComposition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } - public virtual global::System.Boolean Equals(StartFusionConfigurationPublishResult? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion? other) { if (ReferenceEquals(null, other)) { @@ -133092,7 +134355,7 @@ public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi return false; } - return (StartFusionConfigurationComposition.Equals(other.StartFusionConfigurationComposition)); + return (((Stage is null && other.Stage is null) || Stage != null && Stage.Equals(other.Stage))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133112,7 +134375,7 @@ public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi return false; } - return Equals((StartFusionConfigurationPublishResult)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion)obj); } public override global::System.Int32 GetHashCode() @@ -133120,7 +134383,11 @@ public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi unchecked { int hash = 5; - hash ^= 397 * StartFusionConfigurationComposition.GetHashCode(); + if (Stage != null) + { + hash ^= 397 * Stage.GetHashCode(); + } + return hash; } } @@ -133128,16 +134395,16 @@ public StartFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload + public partial class SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : global::System.IEquatable, ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage { - public StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) + public SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(global::System.String name) { - Errors = errors; + Name = name; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload? other) + public virtual global::System.Boolean Equals(SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage? other) { if (ReferenceEquals(null, other)) { @@ -133154,7 +134421,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Start return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Name.Equals(other.Name)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133174,7 +134441,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Start return false; } - return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload)obj); + return Equals((SelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage)obj); } public override global::System.Int32 GetHashCode() @@ -133182,36 +134449,267 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Start unchecked { int hash = 5; - if (Errors != null) - { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } - } - + hash ^= 397 * Name.GetHashCode(); return hash; } } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQueryResult + { + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? ApiById { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById + { + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? Clients { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Api : ISelectClientPromptQuery_ApiById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_ClientsConnection : ISelectClientPromptQuery_ApiById_Clients + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPrompt_ClientEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges : ISelectClientPrompt_ClientEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge : ISelectClientPromptQuery_ApiById_Clients_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_PageInfo : IPageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo : ISelectClientPromptQuery_ApiById_Clients_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPrompt_Client : IClientDetailPrompt_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node : ISelectClientPrompt_Client + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Client : ISelectClientPromptQuery_ApiById_Clients_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api + { + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api_Api : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo PageInfo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_ClientVersionConnection : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges : IClientDetailPrompt_ClientVersionEdge + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_ClientVersionEdge : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo + { + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo_PageInfo : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node + { + public global::System.String Id { get; } + public global::System.DateTimeOffset CreatedAt { get; } + public global::System.String Tag { get; } + public global::System.Collections.Generic.IReadOnlyList PublishedTo { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_ClientVersion : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? Stage { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage + { + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage_Stage : ISelectClientPromptQuery_ApiById_Clients_Edges_Node_Versions_Edges_Node_PublishedTo_Stage + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation + public partial class SelectApiPromptQueryResult : global::System.IEquatable, ISelectApiPromptQueryResult { - public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public SelectApiPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? workspaceById) { - this.__typename = __typename; - Message = message; + WorkspaceById = workspaceById; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? WorkspaceById { get; } - public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(SelectApiPromptQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -133228,7 +134726,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((WorkspaceById is null && other.WorkspaceById is null) || WorkspaceById != null && WorkspaceById.Equals(other.WorkspaceById))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133248,7 +134746,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); + return Equals((SelectApiPromptQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -133256,8 +134754,11 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (WorkspaceById != null) + { + hash ^= 397 * WorkspaceById.GetHashCode(); + } + return hash; } } @@ -133265,21 +134766,16 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError + public partial class SelectApiPromptQuery_WorkspaceById_Workspace : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Workspace { - public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) + public SelectApiPromptQuery_WorkspaceById_Workspace(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? apis) { - this.__typename = __typename; - Message = message; + Apis = apis; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? Apis { get; } - public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -133296,7 +134792,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (((Apis is null && other.Apis is null) || Apis != null && Apis.Equals(other.Apis))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133316,7 +134812,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -133324,30 +134820,39 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Apis != null) + { + hash ^= 397 * Apis.GetHashCode(); + } + return hash; } } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError + public partial class SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_ApisConnection { - public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) + public SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo pageInfo) { - this.__typename = __typename; - Message = message; + Edges = edges; + PageInfo = pageInfo; } /// - /// The name of the current Object type at runtime. + /// A list of edges. /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection? other) { if (ReferenceEquals(null, other)) { @@ -133364,7 +134869,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133384,7 +134889,7 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error return false; } - return Equals((StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection)obj); } public override global::System.Int32 GetHashCode() @@ -133392,69 +134897,127 @@ public StartFusionConfigurationPublish_StartFusionConfigurationComposition_Error unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + if (Edges != null) + { + foreach (var Edges_elm in Edges) + { + hash ^= 397 * Edges_elm.GetHashCode(); + } + } + + hash ^= 397 * PageInfo.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublishResult + public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge { - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition StartFusionConfigurationComposition { get; } - } + public SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node node) + { + Cursor = cursor; + Node = node; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition - { - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } - } + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node Node { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload : IStartFusionConfigurationPublish_StartFusionConfigurationComposition - { - } + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors - { - } + if (ReferenceEquals(this, other)) + { + return true; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IUnauthorizedOperation - { - } + if (other.GetType() != GetType()) + { + return false; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError - { - } + return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError - { + 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((SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge)obj); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Cursor.GetHashCode(); + hash ^= 397 * Node.GetHashCode(); + return hash; + } + } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublishResult : global::System.IEquatable, IValidateFusionConfigurationPublishResult + public partial class SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo { - public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition validateFusionConfigurationComposition) + public SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { - ValidateFusionConfigurationComposition = validateFusionConfigurationComposition; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition ValidateFusionConfigurationComposition { get; } + /// + /// Indicates whether more edges exist prior the set defined by the clients arguments. + /// + public global::System.Boolean HasPreviousPage { get; } + /// + /// Indicates whether more edges exist following the set defined by the clients arguments. + /// + public global::System.Boolean HasNextPage { get; } + /// + /// When paginating forwards, the cursor to continue. + /// + public global::System.String? EndCursor { get; } + /// + /// When paginating backwards, the cursor to continue. + /// + public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublishResult? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -133471,7 +135034,7 @@ public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.Comman return false; } - return (ValidateFusionConfigurationComposition.Equals(other.ValidateFusionConfigurationComposition)); + return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133491,7 +135054,7 @@ public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.Comman return false; } - return Equals((ValidateFusionConfigurationPublishResult)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -133499,7 +135062,18 @@ public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.Comman unchecked { int hash = 5; - hash ^= 397 * ValidateFusionConfigurationComposition.GetHashCode(); + hash ^= 397 * HasPreviousPage.GetHashCode(); + hash ^= 397 * HasNextPage.GetHashCode(); + if (EndCursor != null) + { + hash ^= 397 * EndCursor.GetHashCode(); + } + + if (StartCursor != null) + { + hash ^= 397 * StartCursor.GetHashCode(); + } + return hash; } } @@ -133507,16 +135081,24 @@ public ValidateFusionConfigurationPublishResult(global::ChilliCream.Nitro.Comman // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload + public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api { - public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload(global::System.Collections.Generic.IReadOnlyList? errors) + public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(global::System.String id, global::System.String name, global::System.Collections.Generic.IReadOnlyList path, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? workspace, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings settings) { - Errors = errors; + Id = id; + Name = name; + Path = path; + Workspace = workspace; + Settings = settings; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } + public global::System.Collections.Generic.IReadOnlyList Path { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? Workspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings Settings { get; } - public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api? other) { if (ReferenceEquals(null, other)) { @@ -133533,7 +135115,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Errors, other.Errors)); + return (Id.Equals(other.Id)) && Name.Equals(other.Name) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Path, other.Path) && ((Workspace is null && other.Workspace is null) || Workspace != null && Workspace.Equals(other.Workspace)) && Settings.Equals(other.Settings); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133553,7 +135135,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api)obj); } public override global::System.Int32 GetHashCode() @@ -133561,14 +135143,19 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition unchecked { int hash = 5; - if (Errors != null) + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + foreach (var Path_elm in Path) { - foreach (var Errors_elm in Errors) - { - hash ^= 397 * Errors_elm.GetHashCode(); - } + hash ^= 397 * Path_elm.GetHashCode(); + } + + if (Workspace != null) + { + hash ^= 397 * Workspace.GetHashCode(); } + hash ^= 397 * Settings.GetHashCode(); return hash; } } @@ -133576,21 +135163,18 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation + public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace { - public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation(global::System.String __typename, global::System.String message) + public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace(global::System.String id, global::System.String name) { - this.__typename = __typename; - Message = message; + Id = id; + Name = name; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.String Id { get; } + public global::System.String Name { get; } - public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace? other) { if (ReferenceEquals(null, other)) { @@ -133607,7 +135191,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133627,7 +135211,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace)obj); } public override global::System.Int32 GetHashCode() @@ -133635,8 +135219,8 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } @@ -133644,21 +135228,16 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError + public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings { - public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(global::System.String __typename, global::System.String message) + public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry schemaRegistry) { - this.__typename = __typename; - Message = message; + SchemaRegistry = schemaRegistry; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } - public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings? other) { if (ReferenceEquals(null, other)) { @@ -133675,7 +135254,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (SchemaRegistry.Equals(other.SchemaRegistry)); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133695,7 +135274,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings)obj); } public override global::System.Int32 GetHashCode() @@ -133703,8 +135282,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * SchemaRegistry.GetHashCode(); return hash; } } @@ -133712,21 +135290,18 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : global::System.IEquatable, IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError + public partial class SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : global::System.IEquatable, ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings { - public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(global::System.String __typename, global::System.String message) + public SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings(global::System.Boolean treatDangerousAsBreaking, global::System.Boolean allowBreakingSchemaChanges) { - this.__typename = __typename; - Message = message; + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } - /// - /// The name of the current Object type at runtime. - /// - public global::System.String __typename { get; } - public global::System.String Message { get; } + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } - public virtual global::System.Boolean Equals(ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError? other) + public virtual global::System.Boolean Equals(SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings? other) { if (ReferenceEquals(null, other)) { @@ -133743,7 +135318,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return (__typename.Equals(other.__typename)) && Message.Equals(other.Message); + return (global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking)) && global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -133763,7 +135338,7 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition return false; } - return Equals((ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError)obj); + return Equals((SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings)obj); } public override global::System.Int32 GetHashCode() @@ -133771,8 +135346,8 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition unchecked { int hash = 5; - hash ^= 397 * __typename.GetHashCode(); - hash ^= 397 * Message.GetHashCode(); + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); return hash; } } @@ -133780,45 +135355,153 @@ public ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublishResult + public partial interface ISelectApiPromptQueryResult { - public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition ValidateFusionConfigurationComposition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? WorkspaceById { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition + public partial interface ISelectApiPromptQuery_WorkspaceById { - public global::System.Collections.Generic.IReadOnlyList? Errors { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? Apis { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition + public partial interface ISelectApiPromptQuery_WorkspaceById_Workspace : ISelectApiPromptQuery_WorkspaceById + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo PageInfo { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_ApisConnection : ISelectApiPromptQuery_WorkspaceById_Apis { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IUnauthorizedOperation + public partial interface ISelectApiPrompt_ApiEdge + { + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node Node { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges : ISelectApiPrompt_ApiEdge { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IFusionConfigurationRequestNotFoundError + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge : ISelectApiPromptQuery_WorkspaceById_Apis_Edges + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo : IPageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// Information about pagination in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError : IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors, IInvalidProcessingStateTransitionError + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo : ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node : ISelectApiPrompt_Api + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace + { + public global::System.String Id { get; } + public global::System.String Name { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace_Workspace : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Workspace + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings + { + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry SchemaRegistry { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_ApiSettings : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry + { + public global::System.Boolean TreatDangerousAsBreaking { get; } + public global::System.Boolean AllowBreakingSchemaChanges { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry_SchemaRegistrySettings : ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Settings_SchemaRegistry { } @@ -134387,16 +136070,16 @@ public partial interface ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatu // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryResult : global::System.IEquatable, ISelectMockSchemaPromptQueryResult + public partial class SelectOpenApiCollectionPromptQueryResult : global::System.IEquatable, ISelectOpenApiCollectionPromptQueryResult { - public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? apiById) + public SelectOpenApiCollectionPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? apiById) { ApiById = apiById; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? ApiById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? ApiById { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQueryResult? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQueryResult? other) { if (ReferenceEquals(null, other)) { @@ -134433,7 +136116,7 @@ public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.C return false; } - return Equals((SelectMockSchemaPromptQueryResult)obj); + return Equals((SelectOpenApiCollectionPromptQueryResult)obj); } public override global::System.Int32 GetHashCode() @@ -134453,16 +136136,16 @@ public SelectMockSchemaPromptQueryResult(global::ChilliCream.Nitro.CommandLine.C // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_Api : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_Api + public partial class SelectOpenApiCollectionPromptQuery_ApiById_Api : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_Api { - public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? mockSchemas) + public SelectOpenApiCollectionPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? openApiCollections) { - MockSchemas = mockSchemas; + OpenApiCollections = openApiCollections; } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MockSchemas { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? OpenApiCollections { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_Api? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_Api? other) { if (ReferenceEquals(null, other)) { @@ -134479,7 +136162,7 @@ public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.Command return false; } - return (((MockSchemas is null && other.MockSchemas is null) || MockSchemas != null && MockSchemas.Equals(other.MockSchemas))); + return (((OpenApiCollections is null && other.OpenApiCollections is null) || OpenApiCollections != null && OpenApiCollections.Equals(other.OpenApiCollections))); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -134499,7 +136182,7 @@ public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.Command return false; } - return Equals((SelectMockSchemaPromptQuery_ApiById_Api)obj); + return Equals((SelectOpenApiCollectionPromptQuery_ApiById_Api)obj); } public override global::System.Int32 GetHashCode() @@ -134507,9 +136190,9 @@ public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.Command unchecked { int hash = 5; - if (MockSchemas != null) + if (OpenApiCollections != null) { - hash ^= 397 * MockSchemas.GetHashCode(); + hash ^= 397 * OpenApiCollections.GetHashCode(); } return hash; @@ -134522,9 +136205,9 @@ public SelectMockSchemaPromptQuery_ApiById_Api(global::ChilliCream.Nitro.Command /// A connection to a list of items. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection + public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo pageInfo) + public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo pageInfo) { Edges = edges; PageInfo = pageInfo; @@ -134533,13 +136216,13 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(glo /// /// A list of edges. /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } /// /// Information to aid in pagination. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo PageInfo { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection? other) { if (ReferenceEquals(null, other)) { @@ -134576,7 +136259,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(glo return false; } - return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection)obj); + return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection)obj); } public override global::System.Int32 GetHashCode() @@ -134603,9 +136286,9 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(glo /// An edge in a connection. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge + public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node node) + public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node node) { Cursor = cursor; Node = node; @@ -134618,9 +136301,9 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(glo /// /// The item at the end of the edge. /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node Node { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge? other) { if (ReferenceEquals(null, other)) { @@ -134657,7 +136340,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(glo return false; } - return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge)obj); + return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge)obj); } public override global::System.Int32 GetHashCode() @@ -134677,9 +136360,9 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(glo /// Information about pagination in a connection. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo + public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) { HasPreviousPage = hasPreviousPage; HasNextPage = hasNextPage; @@ -134704,7 +136387,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global: /// public global::System.String? StartCursor { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo? other) { if (ReferenceEquals(null, other)) { @@ -134741,7 +136424,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global: return false; } - return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo)obj); + return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo)obj); } public override global::System.Int32 GetHashCode() @@ -134768,30 +136451,18 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(global: // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema + public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(global::System.String id, global::System.String name, global::System.DateTimeOffset createdAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy createdBy, global::System.DateTimeOffset modifiedAt, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy modifiedBy, global::System.Uri downstreamUrl, global::System.String url) + public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) { Id = id; Name = name; - CreatedAt = createdAt; - CreatedBy = createdBy; - ModifiedAt = modifiedAt; - ModifiedBy = modifiedBy; - DownstreamUrl = downstreamUrl; - Url = url; } public global::System.String Id { get; } public global::System.String Name { get; } - public global::System.DateTimeOffset CreatedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy CreatedBy { get; } - public global::System.DateTimeOffset ModifiedAt { get; } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy ModifiedBy { get; } - public global::System.Uri DownstreamUrl { get; } - public global::System.String Url { get; } - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema? other) + public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection? other) { if (ReferenceEquals(null, other)) { @@ -134808,7 +136479,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(glo return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name) && CreatedAt.Equals(other.CreatedAt) && CreatedBy.Equals(other.CreatedBy) && ModifiedAt.Equals(other.ModifiedAt) && ModifiedBy.Equals(other.ModifiedBy) && DownstreamUrl.Equals(other.DownstreamUrl) && Url.Equals(other.Url); + return (Id.Equals(other.Id)) && Name.Equals(other.Name); } public override global::System.Boolean Equals(global::System.Object? obj) @@ -134828,7 +136499,7 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(glo return false; } - return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema)obj); + return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection)obj); } public override global::System.Int32 GetHashCode() @@ -134838,219 +136509,89 @@ public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(glo int hash = 5; hash ^= 397 * Id.GetHashCode(); hash ^= 397 * Name.GetHashCode(); - hash ^= 397 * CreatedAt.GetHashCode(); - hash ^= 397 * CreatedBy.GetHashCode(); - hash ^= 397 * ModifiedAt.GetHashCode(); - hash ^= 397 * ModifiedBy.GetHashCode(); - hash ^= 397 * DownstreamUrl.GetHashCode(); - hash ^= 397 * Url.GetHashCode(); return hash; } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo + public partial interface ISelectOpenApiCollectionPromptQueryResult { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo(global::System.String username) - { - Username = username; - } - - public global::System.String Username { get; } - - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Username.Equals(other.Username)); - } - - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) - { - return false; - } + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? ApiById { get; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById + { + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? OpenApiCollections { get; } + } - if (obj.GetType() != GetType()) - { - return false; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_Api : ISelectOpenApiCollectionPromptQuery_ApiById + { + } - return Equals((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo)obj); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections + { + /// + /// A list of edges. + /// + public global::System.Collections.Generic.IReadOnlyList? Edges { get; } + /// + /// Information to aid in pagination. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo PageInfo { get; } + } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Username.GetHashCode(); - return hash; - } - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// A connection to a list of items. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections + { } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : global::System.IEquatable, ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo + public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge { - public SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo(global::System.String username) - { - Username = username; - } + /// + /// A cursor for use in pagination. + /// + public global::System.String Cursor { get; } + /// + /// The item at the end of the edge. + /// + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node Node { get; } + } - public global::System.String Username { get; } - - public virtual global::System.Boolean Equals(SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (Username.Equals(other.Username)); - } - - 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((SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * Username.GetHashCode(); - return hash; - } - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? ApiById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MockSchemas { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_Api : ISelectMockSchemaPromptQuery_ApiById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection : ISelectMockSchemaPromptQuery_ApiById_MockSchemas - { - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + /// + /// An edge in a connection. + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges : ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge + { + } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator /// /// An edge in a connection. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockCommand_MockEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges : ISelectMockCommand_MockEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges { } @@ -135059,7 +136600,7 @@ public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_ /// Information about pagination in a connection. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo : IPageInfo + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo : IPageInfo { } @@ -135068,209 +136609,127 @@ public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageIn /// Information about pagination in a connection. /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockCommand_Mock : IMockSchemaDetailPrompt - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node : ISelectMockCommand_Mock - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy + public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection { - public global::System.String Username { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy_UserInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_CreatedBy + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node : ISelectOpenApiCollectionPrompt_OpenApiCollection { } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy + public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node { - public global::System.String Username { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy_UserInfo : ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_ModifiedBy + public partial class UploadFusionSubgraphInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - } + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "UploadFusionSubgraphInput"; - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQueryResult : global::System.IEquatable, ISelectOpenApiCollectionPromptQueryResult - { - public SelectOpenApiCollectionPromptQueryResult(global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? apiById) + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - ApiById = apiById; + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? ApiById { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQueryResult? other) + public global::System.Object? Format(global::System.Object? runtimeValue) { - if (ReferenceEquals(null, other)) + if (runtimeValue is null) { - return false; + return null; } - if (ReferenceEquals(this, other)) + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo; + if (input is null || inputInfo is null) { - return true; + throw new global::System.ArgumentException(nameof(runtimeValue)); } - if (other.GetType() != GetType()) + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsApiIdSet) { - return false; + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); } - return (((ApiById is null && other.ApiById is null) || ApiById != null && ApiById.Equals(other.ApiById))); - } - - public override global::System.Boolean Equals(global::System.Object? obj) - { - if (ReferenceEquals(null, obj)) + if (inputInfo.IsArchiveSet) { - return false; + fields.Add(new global::System.Collections.Generic.KeyValuePair("archive", FormatArchive(input.Archive))); } - if (ReferenceEquals(this, obj)) + if (inputInfo.IsSourceSet) { - return true; + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); } - if (obj.GetType() != GetType()) + if (inputInfo.IsTagSet) { - return false; + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); } - return Equals((SelectOpenApiCollectionPromptQueryResult)obj); + return fields; } - public override global::System.Int32 GetHashCode() + private global::System.Object? FormatApiId(global::System.String input) { - unchecked + if (input is null) { - int hash = 5; - if (ApiById != null) - { - hash ^= 397 * ApiById.GetHashCode(); - } - - return hash; + throw new global::System.ArgumentNullException(nameof(input)); } - } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQuery_ApiById_Api : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_Api - { - public SelectOpenApiCollectionPromptQuery_ApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? openApiCollections) - { - OpenApiCollections = openApiCollections; + return _iDFormatter.Format(input); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? OpenApiCollections { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_Api? other) + private global::System.Object? FormatArchive(global::StrawberryShake.Upload input) { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (((OpenApiCollections is null && other.OpenApiCollections is null) || OpenApiCollections != null && OpenApiCollections.Equals(other.OpenApiCollections))); + return _uploadFormatter.Format(input); } - public override global::System.Boolean Equals(global::System.Object? obj) + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) { - if (ReferenceEquals(null, obj)) - { - return false; - } - - if (ReferenceEquals(this, obj)) + if (input is null) { - return true; + return input; } - - if (obj.GetType() != GetType()) + else { - return false; + return _sourceMetadataInputFormatter.Format(input); } - - return Equals((SelectOpenApiCollectionPromptQuery_ApiById_Api)obj); } - public override global::System.Int32 GetHashCode() + private global::System.Object? FormatTag(global::System.String input) { - unchecked + if (input is null) { - int hash = 5; - if (OpenApiCollections != null) - { - hash ^= 397 * OpenApiCollections.GetHashCode(); - } - - return hash; + throw new global::System.ArgumentNullException(nameof(input)); } + + return _stringFormatter.Format(input); } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record UploadFusionSubgraphInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo { - public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection(global::System.Collections.Generic.IReadOnlyList? edges, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo pageInfo) - { - Edges = edges; - PageInfo = pageInfo; - } - - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo PageInfo { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection? other) + public virtual global::System.Boolean Equals(UploadFusionSubgraphInput? other) { if (ReferenceEquals(null, other)) { @@ -135287,27 +136746,7 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiC return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Edges, other.Edges)) && PageInfo.Equals(other.PageInfo); - } - - 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((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection)obj); + return (ApiId.Equals(other.ApiId)) && Archive.Equals(other.Archive) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -135315,202 +136754,128 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiC unchecked { int hash = 5; - if (Edges != null) + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Archive.GetHashCode(); + if (Source != null) { - foreach (var Edges_elm in Edges) - { - hash ^= 397 * Edges_elm.GetHashCode(); - } + hash ^= 397 * Source.GetHashCode(); } - hash ^= 397 * PageInfo.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge - { - public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(global::System.String cursor, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node node) - { - Cursor = cursor; - Node = node; - } - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node Node { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge? other) + private global::System.String _value_apiId = default !; + private global::System.Boolean _set_apiId; + private global::StrawberryShake.Upload _value_archive; + private global::System.Boolean _set_archive; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + public global::System.String ApiId { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) + get => _value_apiId; + init { - return false; + _set_apiId = true; + _value_apiId = value; } - - return (Cursor.Equals(other.Cursor)) && Node.Equals(other.Node); } - public override global::System.Boolean Equals(global::System.Object? obj) + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsApiIdSet => _set_apiId; + + public global::StrawberryShake.Upload Archive { - if (ReferenceEquals(null, obj)) + get => _value_archive; + init { - return false; + _set_archive = true; + _value_archive = value; } + } - if (ReferenceEquals(this, obj)) - { - return true; - } + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsArchiveSet => _set_archive; - if (obj.GetType() != GetType()) + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init { - return false; + _set_source = true; + _value_source = value; } - - return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge)obj); } - public override global::System.Int32 GetHashCode() + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsSourceSet => _set_source; + + public global::System.String Tag { - unchecked + get => _value_tag; + init { - int hash = 5; - hash ^= 397 * Cursor.GetHashCode(); - hash ^= 397 * Node.GetHashCode(); - return hash; + _set_tag = true; + _value_tag = value; } } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsTagSet => _set_tag; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - /// - /// Information about pagination in a connection. - /// + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo + public partial class SourceMetadataInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo(global::System.Boolean hasPreviousPage, global::System.Boolean hasNextPage, global::System.String? endCursor, global::System.String? startCursor) + private global::StrawberryShake.Serialization.IInputValueFormatter _gitHubSourceMetadataInputFormatter = default !; + public global::System.String TypeName => "SourceMetadataInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + _gitHubSourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("GitHubSourceMetadataInput"); } - /// - /// Indicates whether more edges exist prior the set defined by the clients arguments. - /// - public global::System.Boolean HasPreviousPage { get; } - /// - /// Indicates whether more edges exist following the set defined by the clients arguments. - /// - public global::System.Boolean HasNextPage { get; } - /// - /// When paginating forwards, the cursor to continue. - /// - public global::System.String? EndCursor { get; } - /// - /// When paginating backwards, the cursor to continue. - /// - public global::System.String? StartCursor { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo? other) + public global::System.Object? Format(global::System.Object? runtimeValue) { - if (ReferenceEquals(null, other)) + if (runtimeValue is null) { - return false; + return null; } - if (ReferenceEquals(this, other)) + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ISourceMetadataInputInfo; + if (input is null || inputInfo is null) { - return true; + throw new global::System.ArgumentException(nameof(runtimeValue)); } - if (other.GetType() != GetType()) + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsGithubSet) { - return false; + fields.Add(new global::System.Collections.Generic.KeyValuePair("github", FormatGithub(input.Github))); } - return (global::System.Object.Equals(HasPreviousPage, other.HasPreviousPage)) && global::System.Object.Equals(HasNextPage, other.HasNextPage) && ((EndCursor is null && other.EndCursor is null) || EndCursor != null && EndCursor.Equals(other.EndCursor)) && ((StartCursor is null && other.StartCursor is null) || StartCursor != null && StartCursor.Equals(other.StartCursor)); + return fields; } - public override global::System.Boolean Equals(global::System.Object? obj) + private global::System.Object? FormatGithub(global::ChilliCream.Nitro.CommandLine.Client.GitHubSourceMetadataInput? input) { - if (ReferenceEquals(null, obj)) - { - return false; - } - - if (ReferenceEquals(this, obj)) - { - return true; - } - - if (obj.GetType() != GetType()) + if (input is null) { - return false; + return input; } - - return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo)obj); - } - - public override global::System.Int32 GetHashCode() - { - unchecked + else { - int hash = 5; - hash ^= 397 * HasPreviousPage.GetHashCode(); - hash ^= 397 * HasNextPage.GetHashCode(); - if (EndCursor != null) - { - hash ^= 397 * EndCursor.GetHashCode(); - } - - if (StartCursor != null) - { - hash ^= 397 * StartCursor.GetHashCode(); - } - - return hash; + return _gitHubSourceMetadataInputFormatter.Format(input); } } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection : global::System.IEquatable, ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record SourceMetadataInput : global::ChilliCream.Nitro.CommandLine.Client.State.ISourceMetadataInputInfo { - public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection(global::System.String id, global::System.String name) - { - Id = id; - Name = name; - } - - public global::System.String Id { get; } - public global::System.String Name { get; } - - public virtual global::System.Boolean Equals(SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection? other) + public virtual global::System.Boolean Equals(SourceMetadataInput? other) { if (ReferenceEquals(null, other)) { @@ -135527,174 +136892,50 @@ public SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_ return false; } - return (Id.Equals(other.Id)) && Name.Equals(other.Name); + return (((Github is null && other.Github is null) || Github != null && Github.Equals(other.Github))); } - public override global::System.Boolean Equals(global::System.Object? obj) + public override global::System.Int32 GetHashCode() { - if (ReferenceEquals(null, obj)) - { - return false; - } - - if (ReferenceEquals(this, obj)) + unchecked { - return true; - } + int hash = 5; + if (Github != null) + { + hash ^= 397 * Github.GetHashCode(); + } - if (obj.GetType() != GetType()) - { - return false; + return hash; } - - return Equals((SelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection)obj); } - public override global::System.Int32 GetHashCode() + private global::ChilliCream.Nitro.CommandLine.Client.GitHubSourceMetadataInput? _value_github; + private global::System.Boolean _set_github; + public global::ChilliCream.Nitro.CommandLine.Client.GitHubSourceMetadataInput? Github { - unchecked + get => _value_github; + init { - int hash = 5; - hash ^= 397 * Id.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); - return hash; + _set_github = true; + _value_github = value; } } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQueryResult - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById? ApiById { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById - { - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections? OpenApiCollections { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_Api : ISelectOpenApiCollectionPromptQuery_ApiById - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections - { - /// - /// A list of edges. - /// - public global::System.Collections.Generic.IReadOnlyList? Edges { get; } - /// - /// Information to aid in pagination. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo PageInfo { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// A connection to a list of items. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_ApiOpenApiCollectionsConnection : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge - { - /// - /// A cursor for use in pagination. - /// - public global::System.String Cursor { get; } - /// - /// The item at the end of the edge. - /// - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node Node { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges : ISelectOpenApiCollectionPrompt_OpenApiCollectionEdge - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// An edge in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo : IPageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - /// - /// Information about pagination in a connection. - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo_PageInfo : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_PageInfo - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPrompt_OpenApiCollection : IOpenApiCollectionDetailPrompt_OpenApiCollection - { - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node : ISelectOpenApiCollectionPrompt_OpenApiCollection - { - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node_OpenApiCollection : ISelectOpenApiCollectionPromptQuery_ApiById_OpenApiCollections_Edges_Node - { + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ISourceMetadataInputInfo.IsGithubSet => _set_github; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class GitHubSourceMetadataInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _apiKeyPermissionScopeInputFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _roleAssigmentConditionInputFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "CreateApiKeyInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _uRLFormatter = default !; + public global::System.String TypeName => "GitHubSourceMetadataInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _apiKeyPermissionScopeInputFormatter = serializerResolver.GetInputValueFormatter("ApiKeyPermissionScopeInput"); - _roleAssigmentConditionInputFormatter = serializerResolver.GetInputValueFormatter("RoleAssigmentConditionInput"); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uRLFormatter = serializerResolver.GetInputValueFormatter("URL"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -135704,38 +136945,73 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.GitHubSourceMetadataInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsNameSet) + if (inputInfo.IsActorSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("actor", FormatActor(input.Actor))); } - if (inputInfo.IsPermissionScopeSet) + if (inputInfo.IsCommitHashSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("permissionScope", FormatPermissionScope(input.PermissionScope))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("commitHash", FormatCommitHash(input.CommitHash))); } - if (inputInfo.IsRoleAssigmentConditionSet) + if (inputInfo.IsJobIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("roleAssigmentCondition", FormatRoleAssigmentCondition(input.RoleAssigmentCondition))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("jobId", FormatJobId(input.JobId))); } - if (inputInfo.IsWorkspaceIdSet) + if (inputInfo.IsRepositoryUrlSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("workspaceId", FormatWorkspaceId(input.WorkspaceId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("repositoryUrl", FormatRepositoryUrl(input.RepositoryUrl))); + } + + if (inputInfo.IsRunIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("runId", FormatRunId(input.RunId))); + } + + if (inputInfo.IsRunNumberSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("runNumber", FormatRunNumber(input.RunNumber))); + } + + if (inputInfo.IsWorkflowNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("workflowName", FormatWorkflowName(input.WorkflowName))); } return fields; } - private global::System.Object? FormatName(global::System.String? input) + private global::System.Object? FormatActor(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } + + private global::System.Object? FormatCommitHash(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } + + private global::System.Object? FormatJobId(global::System.String? input) { if (input is null) { @@ -135747,44 +137023,52 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - private global::System.Object? FormatPermissionScope(global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput input) + private global::System.Object? FormatRepositoryUrl(global::System.Uri input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _apiKeyPermissionScopeInputFormatter.Format(input); + return _uRLFormatter.Format(input); } - private global::System.Object? FormatRoleAssigmentCondition(global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? input) + private global::System.Object? FormatRunId(global::System.String input) { if (input is null) { - return input; + throw new global::System.ArgumentNullException(nameof(input)); } - else + + return _stringFormatter.Format(input); + } + + private global::System.Object? FormatRunNumber(global::System.String input) + { + if (input is null) { - return _roleAssigmentConditionInputFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _stringFormatter.Format(input); } - private global::System.Object? FormatWorkspaceId(global::System.String input) + private global::System.Object? FormatWorkflowName(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _iDFormatter.Format(input); + return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateApiKeyInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo + public partial record GitHubSourceMetadataInput : global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo { - public virtual global::System.Boolean Equals(CreateApiKeyInput? other) + public virtual global::System.Boolean Equals(GitHubSourceMetadataInput? other) { if (ReferenceEquals(null, other)) { @@ -135801,7 +137085,7 @@ public partial record CreateApiKeyInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (((Name is null && other.Name is null) || Name != null && Name.Equals(other.Name))) && PermissionScope.Equals(other.PermissionScope) && ((RoleAssigmentCondition is null && other.RoleAssigmentCondition is null) || RoleAssigmentCondition != null && RoleAssigmentCondition.Equals(other.RoleAssigmentCondition)) && WorkspaceId.Equals(other.WorkspaceId); + return (Actor.Equals(other.Actor)) && CommitHash.Equals(other.CommitHash) && ((JobId is null && other.JobId is null) || JobId != null && JobId.Equals(other.JobId)) && RepositoryUrl.Equals(other.RepositoryUrl) && RunId.Equals(other.RunId) && RunNumber.Equals(other.RunNumber) && WorkflowName.Equals(other.WorkflowName); } public override global::System.Int32 GetHashCode() @@ -135809,89 +137093,132 @@ public partial record CreateApiKeyInput : global::ChilliCream.Nitro.CommandLine. unchecked { int hash = 5; - if (Name != null) - { - hash ^= 397 * Name.GetHashCode(); - } - - hash ^= 397 * PermissionScope.GetHashCode(); - if (RoleAssigmentCondition != null) + hash ^= 397 * Actor.GetHashCode(); + hash ^= 397 * CommitHash.GetHashCode(); + if (JobId != null) { - hash ^= 397 * RoleAssigmentCondition.GetHashCode(); + hash ^= 397 * JobId.GetHashCode(); } - hash ^= 397 * WorkspaceId.GetHashCode(); + hash ^= 397 * RepositoryUrl.GetHashCode(); + hash ^= 397 * RunId.GetHashCode(); + hash ^= 397 * RunNumber.GetHashCode(); + hash ^= 397 * WorkflowName.GetHashCode(); return hash; } } - private global::System.String? _value_name; - private global::System.Boolean _set_name; - private global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput _value_permissionScope = default !; - private global::System.Boolean _set_permissionScope; - private global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? _value_roleAssigmentCondition; - private global::System.Boolean _set_roleAssigmentCondition; - private global::System.String _value_workspaceId = default !; - private global::System.Boolean _set_workspaceId; - public global::System.String? Name + private global::System.String _value_actor = default !; + private global::System.Boolean _set_actor; + private global::System.String _value_commitHash = default !; + private global::System.Boolean _set_commitHash; + private global::System.String? _value_jobId; + private global::System.Boolean _set_jobId; + private global::System.Uri _value_repositoryUrl = default !; + private global::System.Boolean _set_repositoryUrl; + private global::System.String _value_runId = default !; + private global::System.Boolean _set_runId; + private global::System.String _value_runNumber = default !; + private global::System.Boolean _set_runNumber; + private global::System.String _value_workflowName = default !; + private global::System.Boolean _set_workflowName; + public global::System.String Actor { - get => _value_name; + get => _value_actor; init { - _set_name = true; - _value_name = value; + _set_actor = true; + _value_actor = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsActorSet => _set_actor; - public global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput PermissionScope + public global::System.String CommitHash { - get => _value_permissionScope; + get => _value_commitHash; init { - _set_permissionScope = true; - _value_permissionScope = value; + _set_commitHash = true; + _value_commitHash = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsPermissionScopeSet => _set_permissionScope; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsCommitHashSet => _set_commitHash; - public global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? RoleAssigmentCondition + public global::System.String? JobId { - get => _value_roleAssigmentCondition; + get => _value_jobId; init { - _set_roleAssigmentCondition = true; - _value_roleAssigmentCondition = value; + _set_jobId = true; + _value_jobId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsRoleAssigmentConditionSet => _set_roleAssigmentCondition; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsJobIdSet => _set_jobId; - public global::System.String WorkspaceId + public global::System.Uri RepositoryUrl { - get => _value_workspaceId; + get => _value_repositoryUrl; init { - _set_workspaceId = true; - _value_workspaceId = value; + _set_repositoryUrl = true; + _value_repositoryUrl = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsWorkspaceIdSet => _set_workspaceId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsRepositoryUrlSet => _set_repositoryUrl; + + public global::System.String RunId + { + get => _value_runId; + init + { + _set_runId = true; + _value_runId = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsRunIdSet => _set_runId; + + public global::System.String RunNumber + { + get => _value_runNumber; + init + { + _set_runNumber = true; + _value_runNumber = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsRunNumberSet => _set_runNumber; + + public global::System.String WorkflowName + { + get => _value_workflowName; + init + { + _set_workflowName = true; + _value_workflowName = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IGitHubSourceMetadataInputInfo.IsWorkflowNameSet => _set_workflowName; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ApiKeyPermissionScopeInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class UnpublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "ApiKeyPermissionScopeInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "UnpublishClientInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -135901,57 +137228,68 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) + if (inputInfo.IsClientIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); } - if (inputInfo.IsWorkspaceIdSet) + if (inputInfo.IsStageSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("workspaceId", FormatWorkspaceId(input.WorkspaceId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + } + + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); } return fields; } - private global::System.Object? FormatApiId(global::System.String? input) + private global::System.Object? FormatClientId(global::System.String input) { if (input is null) { - return input; - } - else - { - return _iDFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _iDFormatter.Format(input); } - private global::System.Object? FormatWorkspaceId(global::System.String? input) + private global::System.Object? FormatStage(global::System.String input) { if (input is null) { - return input; + throw new global::System.ArgumentNullException(nameof(input)); } - else + + return _stringFormatter.Format(input); + } + + private global::System.Object? FormatTag(global::System.String input) + { + if (input is null) { - return _iDFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiKeyPermissionScopeInput : global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo + public partial record UnpublishClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo { - public virtual global::System.Boolean Equals(ApiKeyPermissionScopeInput? other) + public virtual global::System.Boolean Equals(UnpublishClientInput? other) { if (ReferenceEquals(null, other)) { @@ -135968,7 +137306,7 @@ public partial record ApiKeyPermissionScopeInput : global::ChilliCream.Nitro.Com return false; } - return (((ApiId is null && other.ApiId is null) || ApiId != null && ApiId.Equals(other.ApiId))) && ((WorkspaceId is null && other.WorkspaceId is null) || WorkspaceId != null && WorkspaceId.Equals(other.WorkspaceId)); + return (ClientId.Equals(other.ClientId)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -135976,59 +137314,72 @@ public partial record ApiKeyPermissionScopeInput : global::ChilliCream.Nitro.Com unchecked { int hash = 5; - if (ApiId != null) - { - hash ^= 397 * ApiId.GetHashCode(); - } - - if (WorkspaceId != null) - { - hash ^= 397 * WorkspaceId.GetHashCode(); - } - + hash ^= 397 * ClientId.GetHashCode(); + hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } - private global::System.String? _value_apiId; - private global::System.Boolean _set_apiId; - private global::System.String? _value_workspaceId; - private global::System.Boolean _set_workspaceId; - public global::System.String? ApiId + private global::System.String _value_clientId = default !; + private global::System.Boolean _set_clientId; + private global::System.String _value_stage = default !; + private global::System.Boolean _set_stage; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + public global::System.String ClientId { - get => _value_apiId; + get => _value_clientId; init { - _set_apiId = true; - _value_apiId = value; + _set_clientId = true; + _value_clientId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo.IsApiIdSet => _set_apiId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsClientIdSet => _set_clientId; - public global::System.String? WorkspaceId + public global::System.String Stage { - get => _value_workspaceId; + get => _value_stage; init { - _set_workspaceId = true; - _value_workspaceId = value; + _set_stage = true; + _value_stage = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo.IsWorkspaceIdSet => _set_workspaceId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsStageSet => _set_stage; + + public global::System.String Tag + { + get => _value_tag; + init + { + _set_tag = true; + _value_tag = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsTagSet => _set_tag; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RoleAssigmentConditionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class UploadClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _roleAssignmentStageAuthorizationConditionInputFormatter = default !; - public global::System.String TypeName => "RoleAssigmentConditionInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "UploadClientInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _roleAssignmentStageAuthorizationConditionInputFormatter = serializerResolver.GetInputValueFormatter("RoleAssignmentStageAuthorizationConditionInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136038,23 +137389,53 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsStageAuthorizationConditionSet) + if (inputInfo.IsClientIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stageAuthorizationCondition", FormatStageAuthorizationCondition(input.StageAuthorizationCondition))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); + } + + if (inputInfo.IsOperationsSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("operations", FormatOperations(input.Operations))); + } + + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); } return fields; } - private global::System.Object? FormatStageAuthorizationCondition(global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? input) + private global::System.Object? FormatClientId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + + private global::System.Object? FormatOperations(global::StrawberryShake.Upload input) + { + return _uploadFormatter.Format(input); + } + + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) { if (input is null) { @@ -136062,16 +137443,26 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } else { - return _roleAssignmentStageAuthorizationConditionInputFormatter.Format(input); + return _sourceMetadataInputFormatter.Format(input); + } + } + + private global::System.Object? FormatTag(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); } + + return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record RoleAssigmentConditionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo + public partial record UploadClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo { - public virtual global::System.Boolean Equals(RoleAssigmentConditionInput? other) + public virtual global::System.Boolean Equals(UploadClientInput? other) { if (ReferenceEquals(null, other)) { @@ -136088,7 +137479,7 @@ public partial record RoleAssigmentConditionInput : global::ChilliCream.Nitro.Co return false; } - return (((StageAuthorizationCondition is null && other.StageAuthorizationCondition is null) || StageAuthorizationCondition != null && StageAuthorizationCondition.Equals(other.StageAuthorizationCondition))); + return (ClientId.Equals(other.ClientId)) && Operations.Equals(other.Operations) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -136096,66 +137487,159 @@ public partial record RoleAssigmentConditionInput : global::ChilliCream.Nitro.Co unchecked { int hash = 5; - if (StageAuthorizationCondition != null) + hash ^= 397 * ClientId.GetHashCode(); + hash ^= 397 * Operations.GetHashCode(); + if (Source != null) { - hash ^= 397 * StageAuthorizationCondition.GetHashCode(); + hash ^= 397 * Source.GetHashCode(); } + hash ^= 397 * Tag.GetHashCode(); return hash; } } - private global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? _value_stageAuthorizationCondition; - private global::System.Boolean _set_stageAuthorizationCondition; - public global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? StageAuthorizationCondition + private global::System.String _value_clientId = default !; + private global::System.Boolean _set_clientId; + private global::StrawberryShake.Upload _value_operations; + private global::System.Boolean _set_operations; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + public global::System.String ClientId { - get => _value_stageAuthorizationCondition; + get => _value_clientId; init { - _set_stageAuthorizationCondition = true; - _value_stageAuthorizationCondition = value; + _set_clientId = true; + _value_clientId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo.IsStageAuthorizationConditionSet => _set_stageAuthorizationCondition; - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RoleAssignmentStageAuthorizationConditionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter - { - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "RoleAssignmentStageAuthorizationConditionInput"; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsClientIdSet => _set_clientId; - public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public global::StrawberryShake.Upload Operations { - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + get => _value_operations; + init + { + _set_operations = true; + _value_operations = value; + } } - public global::System.Object? Format(global::System.Object? runtimeValue) + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsOperationsSet => _set_operations; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source { - if (runtimeValue is null) + get => _value_source; + init { - return null; + _set_source = true; + _value_source = value; } + } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo; - if (input is null || inputInfo is null) + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsSourceSet => _set_source; + + public global::System.String Tag + { + get => _value_tag; + init { - throw new global::System.ArgumentException(nameof(runtimeValue)); + _set_tag = true; + _value_tag = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsTagSet => _set_tag; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "ValidateClientInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + } + + public global::System.Object? Format(global::System.Object? runtimeValue) + { + if (runtimeValue is null) + { + return null; + } + + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsNameSet) + if (inputInfo.IsClientIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); + } + + if (inputInfo.IsOperationsSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("operations", FormatOperations(input.Operations))); + } + + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsStageSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); } return fields; } - private global::System.Object? FormatName(global::System.String input) + private global::System.Object? FormatClientId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + + private global::System.Object? FormatOperations(global::StrawberryShake.Upload input) + { + return _uploadFormatter.Format(input); + } + + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + + private global::System.Object? FormatStage(global::System.String input) { if (input is null) { @@ -136168,9 +137652,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record RoleAssignmentStageAuthorizationConditionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo + public partial record ValidateClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo { - public virtual global::System.Boolean Equals(RoleAssignmentStageAuthorizationConditionInput? other) + public virtual global::System.Boolean Equals(ValidateClientInput? other) { if (ReferenceEquals(null, other)) { @@ -136187,7 +137671,7 @@ public partial record RoleAssignmentStageAuthorizationConditionInput : global::C return false; } - return (Name.Equals(other.Name)); + return (ClientId.Equals(other.ClientId)) && Operations.Equals(other.Operations) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage); } public override global::System.Int32 GetHashCode() @@ -136195,32 +137679,81 @@ public partial record RoleAssignmentStageAuthorizationConditionInput : global::C unchecked { int hash = 5; - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); + hash ^= 397 * Operations.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + + hash ^= 397 * Stage.GetHashCode(); return hash; } } - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; - public global::System.String Name + private global::System.String _value_clientId = default !; + private global::System.Boolean _set_clientId; + private global::StrawberryShake.Upload _value_operations; + private global::System.Boolean _set_operations; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_stage = default !; + private global::System.Boolean _set_stage; + public global::System.String ClientId { - get => _value_name; + get => _value_clientId; init { - _set_name = true; - _value_name = value; + _set_clientId = true; + _value_clientId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsClientIdSet => _set_clientId; + + public global::StrawberryShake.Upload Operations + { + get => _value_operations; + init + { + _set_operations = true; + _value_operations = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsOperationsSet => _set_operations; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsSourceSet => _set_source; + + public global::System.String Stage + { + get => _value_stage; + init + { + _set_stage = true; + _value_stage = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsStageSet => _set_stage; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class DeleteClientByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "DeleteApiKeyInput"; + public global::System.String TypeName => "DeleteClientByIdInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { @@ -136234,23 +137767,23 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiKeyIdSet) + if (inputInfo.IsClientIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiKeyId", FormatApiKeyId(input.ApiKeyId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); } return fields; } - private global::System.Object? FormatApiKeyId(global::System.String input) + private global::System.Object? FormatClientId(global::System.String input) { if (input is null) { @@ -136263,9 +137796,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteApiKeyInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo + public partial record DeleteClientByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo { - public virtual global::System.Boolean Equals(DeleteApiKeyInput? other) + public virtual global::System.Boolean Equals(DeleteClientByIdInput? other) { if (ReferenceEquals(null, other)) { @@ -136282,7 +137815,7 @@ public partial record DeleteApiKeyInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (ApiKeyId.Equals(other.ApiKeyId)); + return (ClientId.Equals(other.ClientId)); } public override global::System.Int32 GetHashCode() @@ -136290,38 +137823,42 @@ public partial record DeleteApiKeyInput : global::ChilliCream.Nitro.CommandLine. unchecked { int hash = 5; - hash ^= 397 * ApiKeyId.GetHashCode(); + hash ^= 397 * ClientId.GetHashCode(); return hash; } } - private global::System.String _value_apiKeyId = default !; - private global::System.Boolean _set_apiKeyId; - public global::System.String ApiKeyId + private global::System.String _value_clientId = default !; + private global::System.Boolean _set_clientId; + public global::System.String ClientId { - get => _value_apiKeyId; + get => _value_clientId; init { - _set_apiKeyId = true; - _value_apiKeyId = value; + _set_clientId = true; + _value_clientId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo.IsApiKeyIdSet => _set_apiKeyId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo.IsClientIdSet => _set_clientId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateApiSettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class PublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _partialApiSettingsInputFormatter = default !; - public global::System.String TypeName => "UpdateApiSettingsInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "PublishClientInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _partialApiSettingsInputFormatter = serializerResolver.GetInputValueFormatter("PartialApiSettingsInput"); + _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136331,148 +137868,102 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishClientInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) + if (inputInfo.IsClientIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); } - if (inputInfo.IsSettingsSet) + if (inputInfo.IsForceSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("settings", FormatSettings(input.Settings))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); } - return fields; - } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } - private global::System.Object? FormatApiId(global::System.String input) - { - if (input is null) + if (inputInfo.IsStageSet) { - throw new global::System.ArgumentNullException(nameof(input)); + fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); } - return _iDFormatter.Format(input); + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + } + + if (inputInfo.IsWaitForApprovalSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); + } + + return fields; } - private global::System.Object? FormatSettings(global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput input) + private global::System.Object? FormatClientId(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _partialApiSettingsInputFormatter.Format(input); + return _iDFormatter.Format(input); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UpdateApiSettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo - { - public virtual global::System.Boolean Equals(UpdateApiSettingsInput? other) + private global::System.Object? FormatForce(global::System.Boolean? input) { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) + if (input is null) { - return true; + return input; } - - if (other.GetType() != GetType()) + else { - return false; + return _booleanFormatter.Format(input); } - - return (ApiId.Equals(other.ApiId)) && Settings.Equals(other.Settings); } - public override global::System.Int32 GetHashCode() + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) { - unchecked + if (input is null) { - int hash = 5; - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Settings.GetHashCode(); - return hash; + return input; } - } - - private global::System.String _value_apiId = default !; - private global::System.Boolean _set_apiId; - private global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput _value_settings = default !; - private global::System.Boolean _set_settings; - public global::System.String ApiId - { - get => _value_apiId; - init + else { - _set_apiId = true; - _value_apiId = value; + return _sourceMetadataInputFormatter.Format(input); } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo.IsApiIdSet => _set_apiId; - - public global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput Settings + private global::System.Object? FormatStage(global::System.String input) { - get => _value_settings; - init + if (input is null) { - _set_settings = true; - _value_settings = value; + throw new global::System.ArgumentNullException(nameof(input)); } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo.IsSettingsSet => _set_settings; - } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PartialApiSettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter - { - private global::StrawberryShake.Serialization.IInputValueFormatter _partialSchemaRegistrySettingsInputFormatter = default !; - public global::System.String TypeName => "PartialApiSettingsInput"; - - public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _partialSchemaRegistrySettingsInputFormatter = serializerResolver.GetInputValueFormatter("PartialSchemaRegistrySettingsInput"); + return _stringFormatter.Format(input); } - public global::System.Object? Format(global::System.Object? runtimeValue) + private global::System.Object? FormatTag(global::System.String input) { - if (runtimeValue is null) - { - return null; - } - - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo; - if (input is null || inputInfo is null) - { - throw new global::System.ArgumentException(nameof(runtimeValue)); - } - - var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsSchemaRegistrySet) + if (input is null) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("schemaRegistry", FormatSchemaRegistry(input.SchemaRegistry))); + throw new global::System.ArgumentNullException(nameof(input)); } - return fields; + return _stringFormatter.Format(input); } - private global::System.Object? FormatSchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? input) + private global::System.Object? FormatWaitForApproval(global::System.Boolean? input) { if (input is null) { @@ -136480,16 +137971,16 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } else { - return _partialSchemaRegistrySettingsInputFormatter.Format(input); + return _booleanFormatter.Format(input); } } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PartialApiSettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo + public partial record PublishClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo { - public virtual global::System.Boolean Equals(PartialApiSettingsInput? other) + public virtual global::System.Boolean Equals(PublishClientInput? other) { if (ReferenceEquals(null, other)) { @@ -136506,7 +137997,7 @@ public partial record PartialApiSettingsInput : global::ChilliCream.Nitro.Comman return false; } - return (((SchemaRegistry is null && other.SchemaRegistry is null) || SchemaRegistry != null && SchemaRegistry.Equals(other.SchemaRegistry))); + return (ClientId.Equals(other.ClientId)) && global::System.Object.Equals(Force, other.Force) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); } public override global::System.Int32 GetHashCode() @@ -136514,40 +138005,125 @@ public partial record PartialApiSettingsInput : global::ChilliCream.Nitro.Comman unchecked { int hash = 5; - if (SchemaRegistry != null) + hash ^= 397 * ClientId.GetHashCode(); + if (Force != null) { - hash ^= 397 * SchemaRegistry.GetHashCode(); + hash ^= 397 * Force.GetHashCode(); + } + + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + + hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + if (WaitForApproval != null) + { + hash ^= 397 * WaitForApproval.GetHashCode(); } return hash; } } - private global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? _value_schemaRegistry; - private global::System.Boolean _set_schemaRegistry; - public global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? SchemaRegistry + private global::System.String _value_clientId = default !; + private global::System.Boolean _set_clientId; + private global::System.Boolean? _value_force; + private global::System.Boolean _set_force; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_stage = default !; + private global::System.Boolean _set_stage; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + private global::System.Boolean? _value_waitForApproval; + private global::System.Boolean _set_waitForApproval; + public global::System.String ClientId { - get => _value_schemaRegistry; + get => _value_clientId; init { - _set_schemaRegistry = true; - _value_schemaRegistry = value; + _set_clientId = true; + _value_clientId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo.IsSchemaRegistrySet => _set_schemaRegistry; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsClientIdSet => _set_clientId; + + public global::System.Boolean? Force + { + get => _value_force; + init + { + _set_force = true; + _value_force = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsForceSet => _set_force; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsSourceSet => _set_source; + + public global::System.String Stage + { + get => _value_stage; + init + { + _set_stage = true; + _value_stage = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsStageSet => _set_stage; + + public global::System.String Tag + { + get => _value_tag; + init + { + _set_tag = true; + _value_tag = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsTagSet => _set_tag; + + public global::System.Boolean? WaitForApproval + { + get => _value_waitForApproval; + init + { + _set_waitForApproval = true; + _value_waitForApproval = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PartialSchemaRegistrySettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CreateClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; - public global::System.String TypeName => "PartialSchemaRegistrySettingsInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "CreateClientInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136557,57 +138133,53 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsAllowBreakingSchemaChangesSet) + if (inputInfo.IsApiIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("allowBreakingSchemaChanges", FormatAllowBreakingSchemaChanges(input.AllowBreakingSchemaChanges))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); } - if (inputInfo.IsTreatDangerousAsBreakingSet) + if (inputInfo.IsNameSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("treatDangerousAsBreaking", FormatTreatDangerousAsBreaking(input.TreatDangerousAsBreaking))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } return fields; } - private global::System.Object? FormatAllowBreakingSchemaChanges(global::System.Boolean? input) + private global::System.Object? FormatApiId(global::System.String input) { if (input is null) { - return input; - } - else - { - return _booleanFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _iDFormatter.Format(input); } - private global::System.Object? FormatTreatDangerousAsBreaking(global::System.Boolean? input) + private global::System.Object? FormatName(global::System.String input) { if (input is null) { - return input; - } - else - { - return _booleanFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PartialSchemaRegistrySettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo + public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo { - public virtual global::System.Boolean Equals(PartialSchemaRegistrySettingsInput? other) + public virtual global::System.Boolean Equals(CreateClientInput? other) { if (ReferenceEquals(null, other)) { @@ -136624,7 +138196,7 @@ public partial record PartialSchemaRegistrySettingsInput : global::ChilliCream.N return false; } - return (global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges)) && global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking); + return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); } public override global::System.Int32 GetHashCode() @@ -136632,61 +138204,53 @@ public partial record PartialSchemaRegistrySettingsInput : global::ChilliCream.N unchecked { int hash = 5; - if (AllowBreakingSchemaChanges != null) - { - hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); - } - - if (TreatDangerousAsBreaking != null) - { - hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); - } - + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } - private global::System.Boolean? _value_allowBreakingSchemaChanges; - private global::System.Boolean _set_allowBreakingSchemaChanges; - private global::System.Boolean? _value_treatDangerousAsBreaking; - private global::System.Boolean _set_treatDangerousAsBreaking; - public global::System.Boolean? AllowBreakingSchemaChanges + private global::System.String _value_apiId = default !; + private global::System.Boolean _set_apiId; + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.String ApiId { - get => _value_allowBreakingSchemaChanges; + get => _value_apiId; init { - _set_allowBreakingSchemaChanges = true; - _value_allowBreakingSchemaChanges = value; + _set_apiId = true; + _value_apiId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo.IsAllowBreakingSchemaChangesSet => _set_allowBreakingSchemaChanges; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo.IsApiIdSet => _set_apiId; - public global::System.Boolean? TreatDangerousAsBreaking + public global::System.String Name { - get => _value_treatDangerousAsBreaking; + get => _value_name; init { - _set_treatDangerousAsBreaking = true; - _value_treatDangerousAsBreaking = value; + _set_name = true; + _value_name = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo.IsTreatDangerousAsBreakingSet => _set_treatDangerousAsBreaking; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo.IsNameSet => _set_name; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class UpdateApiSettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "CreateClientInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _partialApiSettingsInputFormatter = default !; + public global::System.String TypeName => "UpdateApiSettingsInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _partialApiSettingsInputFormatter = serializerResolver.GetInputValueFormatter("PartialApiSettingsInput"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136696,8 +138260,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); @@ -136709,9 +138273,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); } - if (inputInfo.IsNameSet) + if (inputInfo.IsSettingsSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("settings", FormatSettings(input.Settings))); } return fields; @@ -136727,22 +138291,22 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } - private global::System.Object? FormatName(global::System.String input) + private global::System.Object? FormatSettings(global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); + return _partialApiSettingsInputFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo + public partial record UpdateApiSettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo { - public virtual global::System.Boolean Equals(CreateClientInput? other) + public virtual global::System.Boolean Equals(UpdateApiSettingsInput? other) { if (ReferenceEquals(null, other)) { @@ -136759,7 +138323,7 @@ public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); + return (ApiId.Equals(other.ApiId)) && Settings.Equals(other.Settings); } public override global::System.Int32 GetHashCode() @@ -136768,15 +138332,15 @@ public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine. { int hash = 5; hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Settings.GetHashCode(); return hash; } } private global::System.String _value_apiId = default !; private global::System.Boolean _set_apiId; - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; + private global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput _value_settings = default !; + private global::System.Boolean _set_settings; public global::System.String ApiId { get => _value_apiId; @@ -136787,31 +138351,31 @@ public partial record CreateClientInput : global::ChilliCream.Nitro.CommandLine. } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo.IsApiIdSet => _set_apiId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo.IsApiIdSet => _set_apiId; - public global::System.String Name + public global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput Settings { - get => _value_name; + get => _value_settings; init { - _set_name = true; - _value_name = value; + _set_settings = true; + _value_settings = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsInputInfo.IsSettingsSet => _set_settings; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class PartialApiSettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "DeleteClientByIdInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _partialSchemaRegistrySettingsInputFormatter = default !; + public global::System.String TypeName => "PartialApiSettingsInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _partialSchemaRegistrySettingsInputFormatter = serializerResolver.GetInputValueFormatter("PartialSchemaRegistrySettingsInput"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136821,38 +138385,40 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PartialApiSettingsInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsClientIdSet) + if (inputInfo.IsSchemaRegistrySet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("schemaRegistry", FormatSchemaRegistry(input.SchemaRegistry))); } return fields; } - private global::System.Object? FormatClientId(global::System.String input) + private global::System.Object? FormatSchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? input) { if (input is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return input; + } + else + { + return _partialSchemaRegistrySettingsInputFormatter.Format(input); } - - return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteClientByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo + public partial record PartialApiSettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo { - public virtual global::System.Boolean Equals(DeleteClientByIdInput? other) + public virtual global::System.Boolean Equals(PartialApiSettingsInput? other) { if (ReferenceEquals(null, other)) { @@ -136869,7 +138435,7 @@ public partial record DeleteClientByIdInput : global::ChilliCream.Nitro.CommandL return false; } - return (ClientId.Equals(other.ClientId)); + return (((SchemaRegistry is null && other.SchemaRegistry is null) || SchemaRegistry != null && SchemaRegistry.Equals(other.SchemaRegistry))); } public override global::System.Int32 GetHashCode() @@ -136877,40 +138443,40 @@ public partial record DeleteClientByIdInput : global::ChilliCream.Nitro.CommandL unchecked { int hash = 5; - hash ^= 397 * ClientId.GetHashCode(); + if (SchemaRegistry != null) + { + hash ^= 397 * SchemaRegistry.GetHashCode(); + } + return hash; } } - private global::System.String _value_clientId = default !; - private global::System.Boolean _set_clientId; - public global::System.String ClientId + private global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? _value_schemaRegistry; + private global::System.Boolean _set_schemaRegistry; + public global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput? SchemaRegistry { - get => _value_clientId; + get => _value_schemaRegistry; init { - _set_clientId = true; - _value_clientId = value; + _set_schemaRegistry = true; + _value_schemaRegistry = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdInputInfo.IsClientIdSet => _set_clientId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialApiSettingsInputInfo.IsSchemaRegistrySet => _set_schemaRegistry; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class PartialSchemaRegistrySettingsInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "PublishClientInput"; + public global::System.String TypeName => "PartialSchemaRegistrySettingsInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -136920,53 +138486,28 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishClientInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PartialSchemaRegistrySettingsInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsClientIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); - } - - if (inputInfo.IsForceSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); - } - - if (inputInfo.IsStageSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); - } - - if (inputInfo.IsTagSet) + if (inputInfo.IsAllowBreakingSchemaChangesSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("allowBreakingSchemaChanges", FormatAllowBreakingSchemaChanges(input.AllowBreakingSchemaChanges))); } - if (inputInfo.IsWaitForApprovalSet) + if (inputInfo.IsTreatDangerousAsBreakingSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("treatDangerousAsBreaking", FormatTreatDangerousAsBreaking(input.TreatDangerousAsBreaking))); } return fields; } - private global::System.Object? FormatClientId(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _iDFormatter.Format(input); - } - - private global::System.Object? FormatForce(global::System.Boolean? input) + private global::System.Object? FormatAllowBreakingSchemaChanges(global::System.Boolean? input) { if (input is null) { @@ -136978,27 +138519,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - private global::System.Object? FormatStage(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); - } - - private global::System.Object? FormatTag(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); - } - - private global::System.Object? FormatWaitForApproval(global::System.Boolean? input) + private global::System.Object? FormatTreatDangerousAsBreaking(global::System.Boolean? input) { if (input is null) { @@ -137013,9 +138534,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo + public partial record PartialSchemaRegistrySettingsInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo { - public virtual global::System.Boolean Equals(PublishClientInput? other) + public virtual global::System.Boolean Equals(PartialSchemaRegistrySettingsInput? other) { if (ReferenceEquals(null, other)) { @@ -137032,7 +138553,7 @@ public partial record PublishClientInput : global::ChilliCream.Nitro.CommandLine return false; } - return (ClientId.Equals(other.ClientId)) && global::System.Object.Equals(Force, other.Force) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); + return (global::System.Object.Equals(AllowBreakingSchemaChanges, other.AllowBreakingSchemaChanges)) && global::System.Object.Equals(TreatDangerousAsBreaking, other.TreatDangerousAsBreaking); } public override global::System.Int32 GetHashCode() @@ -137040,106 +138561,61 @@ public partial record PublishClientInput : global::ChilliCream.Nitro.CommandLine unchecked { int hash = 5; - hash ^= 397 * ClientId.GetHashCode(); - if (Force != null) + if (AllowBreakingSchemaChanges != null) { - hash ^= 397 * Force.GetHashCode(); + hash ^= 397 * AllowBreakingSchemaChanges.GetHashCode(); } - hash ^= 397 * Stage.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - if (WaitForApproval != null) + if (TreatDangerousAsBreaking != null) { - hash ^= 397 * WaitForApproval.GetHashCode(); + hash ^= 397 * TreatDangerousAsBreaking.GetHashCode(); } return hash; } } - private global::System.String _value_clientId = default !; - private global::System.Boolean _set_clientId; - private global::System.Boolean? _value_force; - private global::System.Boolean _set_force; - private global::System.String _value_stage = default !; - private global::System.Boolean _set_stage; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - private global::System.Boolean? _value_waitForApproval; - private global::System.Boolean _set_waitForApproval; - public global::System.String ClientId - { - get => _value_clientId; - init - { - _set_clientId = true; - _value_clientId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsClientIdSet => _set_clientId; - - public global::System.Boolean? Force - { - get => _value_force; - init - { - _set_force = true; - _value_force = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsForceSet => _set_force; - - public global::System.String Stage - { - get => _value_stage; - init - { - _set_stage = true; - _value_stage = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsStageSet => _set_stage; - - public global::System.String Tag + private global::System.Boolean? _value_allowBreakingSchemaChanges; + private global::System.Boolean _set_allowBreakingSchemaChanges; + private global::System.Boolean? _value_treatDangerousAsBreaking; + private global::System.Boolean _set_treatDangerousAsBreaking; + public global::System.Boolean? AllowBreakingSchemaChanges { - get => _value_tag; + get => _value_allowBreakingSchemaChanges; init { - _set_tag = true; - _value_tag = value; + _set_allowBreakingSchemaChanges = true; + _value_allowBreakingSchemaChanges = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo.IsAllowBreakingSchemaChangesSet => _set_allowBreakingSchemaChanges; - public global::System.Boolean? WaitForApproval + public global::System.Boolean? TreatDangerousAsBreaking { - get => _value_waitForApproval; + get => _value_treatDangerousAsBreaking; init { - _set_waitForApproval = true; - _value_waitForApproval = value; + _set_treatDangerousAsBreaking = true; + _value_treatDangerousAsBreaking = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientInputInfo.IsWaitForApprovalSet => _set_waitForApproval; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPartialSchemaRegistrySettingsInputInfo.IsTreatDangerousAsBreakingSet => _set_treatDangerousAsBreaking; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class UpdateStagesInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "UnpublishClientInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _stageUpdateInputFormatter = default !; + public global::System.String TypeName => "UpdateStagesInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _stageUpdateInputFormatter = serializerResolver.GetInputValueFormatter("StageUpdateInput"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -137149,33 +138625,28 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsClientIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); - } - - if (inputInfo.IsStageSet) + if (inputInfo.IsApiIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); } - if (inputInfo.IsTagSet) + if (inputInfo.IsUpdatedStagesSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("updatedStages", FormatUpdatedStages(input.UpdatedStages))); } return fields; } - private global::System.Object? FormatClientId(global::System.String input) + private global::System.Object? FormatApiId(global::System.String input) { if (input is null) { @@ -137185,32 +138656,33 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } - private global::System.Object? FormatStage(global::System.String input) + private global::System.Object? FormatUpdatedStages(global::System.Collections.Generic.IReadOnlyList input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); - } - - private global::System.Object? FormatTag(global::System.String input) - { - if (input is null) + var input_list = new global::System.Collections.Generic.List(); + foreach (var input_elm in input) { - throw new global::System.ArgumentNullException(nameof(input)); + if (input_elm is null) + { + throw new global::System.ArgumentNullException(nameof(input_elm)); + } + + input_list.Add(_stageUpdateInputFormatter.Format(input_elm)); } - return _stringFormatter.Format(input); + return input_list; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UnpublishClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo + public partial record UpdateStagesInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo { - public virtual global::System.Boolean Equals(UnpublishClientInput? other) + public virtual global::System.Boolean Equals(UpdateStagesInput? other) { if (ReferenceEquals(null, other)) { @@ -137227,7 +138699,7 @@ public partial record UnpublishClientInput : global::ChilliCream.Nitro.CommandLi return false; } - return (ClientId.Equals(other.ClientId)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag); + return (ApiId.Equals(other.ApiId)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(UpdatedStages, other.UpdatedStages); } public override global::System.Int32 GetHashCode() @@ -137235,69 +138707,56 @@ public partial record UnpublishClientInput : global::ChilliCream.Nitro.CommandLi unchecked { int hash = 5; - hash ^= 397 * ClientId.GetHashCode(); - hash ^= 397 * Stage.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - return hash; - } - } + hash ^= 397 * ApiId.GetHashCode(); + foreach (var UpdatedStages_elm in UpdatedStages) + { + hash ^= 397 * UpdatedStages_elm.GetHashCode(); + } - private global::System.String _value_clientId = default !; - private global::System.Boolean _set_clientId; - private global::System.String _value_stage = default !; - private global::System.Boolean _set_stage; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - public global::System.String ClientId - { - get => _value_clientId; - init - { - _set_clientId = true; - _value_clientId = value; + return hash; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsClientIdSet => _set_clientId; - - public global::System.String Stage + private global::System.String _value_apiId = default !; + private global::System.Boolean _set_apiId; + private global::System.Collections.Generic.IReadOnlyList _value_updatedStages = default !; + private global::System.Boolean _set_updatedStages; + public global::System.String ApiId { - get => _value_stage; + get => _value_apiId; init { - _set_stage = true; - _value_stage = value; + _set_apiId = true; + _value_apiId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsStageSet => _set_stage; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo.IsApiIdSet => _set_apiId; - public global::System.String Tag + public global::System.Collections.Generic.IReadOnlyList UpdatedStages { - get => _value_tag; + get => _value_updatedStages; init { - _set_tag = true; - _value_tag = value; + _set_updatedStages = true; + _value_updatedStages = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo.IsUpdatedStagesSet => _set_updatedStages; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class StageUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stageConditionUpdateInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "UploadClientInput"; + public global::System.String TypeName => "StageUpdateInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _stageConditionUpdateInputFormatter = serializerResolver.GetInputValueFormatter("StageConditionUpdateInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -137308,48 +138767,66 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StageUpdateInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsClientIdSet) + if (inputInfo.IsConditionsSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("conditions", FormatConditions(input.Conditions))); } - if (inputInfo.IsOperationsSet) + if (inputInfo.IsDisplayNameSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("operations", FormatOperations(input.Operations))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("displayName", FormatDisplayName(input.DisplayName))); } - if (inputInfo.IsTagSet) + if (inputInfo.IsNameSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } return fields; } - private global::System.Object? FormatClientId(global::System.String input) + private global::System.Object? FormatConditions(global::System.Collections.Generic.IReadOnlyList? input) { if (input is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return input; } + else + { + var input_list = new global::System.Collections.Generic.List(); + foreach (var input_elm in input) + { + if (input_elm is null) + { + throw new global::System.ArgumentNullException(nameof(input_elm)); + } - return _iDFormatter.Format(input); + input_list.Add(_stageConditionUpdateInputFormatter.Format(input_elm)); + } + + return input_list; + } } - private global::System.Object? FormatOperations(global::StrawberryShake.Upload input) + private global::System.Object? FormatDisplayName(global::System.String input) { - return _uploadFormatter.Format(input); + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); } - private global::System.Object? FormatTag(global::System.String input) + private global::System.Object? FormatName(global::System.String input) { if (input is null) { @@ -137362,9 +138839,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UploadClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo + public partial record StageUpdateInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo { - public virtual global::System.Boolean Equals(UploadClientInput? other) + public virtual global::System.Boolean Equals(StageUpdateInput? other) { if (ReferenceEquals(null, other)) { @@ -137381,7 +138858,7 @@ public partial record UploadClientInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (ClientId.Equals(other.ClientId)) && Operations.Equals(other.Operations) && Tag.Equals(other.Tag); + return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions)) && DisplayName.Equals(other.DisplayName) && Name.Equals(other.Name); } public override global::System.Int32 GetHashCode() @@ -137389,69 +138866,72 @@ public partial record UploadClientInput : global::ChilliCream.Nitro.CommandLine. unchecked { int hash = 5; - hash ^= 397 * ClientId.GetHashCode(); - hash ^= 397 * Operations.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); + if (Conditions != null) + { + foreach (var Conditions_elm in Conditions) + { + hash ^= 397 * Conditions_elm.GetHashCode(); + } + } + + hash ^= 397 * DisplayName.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } - private global::System.String _value_clientId = default !; - private global::System.Boolean _set_clientId; - private global::StrawberryShake.Upload _value_operations; - private global::System.Boolean _set_operations; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - public global::System.String ClientId + private global::System.Collections.Generic.IReadOnlyList? _value_conditions; + private global::System.Boolean _set_conditions; + private global::System.String _value_displayName = default !; + private global::System.Boolean _set_displayName; + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.Collections.Generic.IReadOnlyList? Conditions { - get => _value_clientId; + get => _value_conditions; init { - _set_clientId = true; - _value_clientId = value; + _set_conditions = true; + _value_conditions = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsClientIdSet => _set_clientId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsConditionsSet => _set_conditions; - public global::StrawberryShake.Upload Operations + public global::System.String DisplayName { - get => _value_operations; + get => _value_displayName; init { - _set_operations = true; - _value_operations = value; + _set_displayName = true; + _value_displayName = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsOperationsSet => _set_operations; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsDisplayNameSet => _set_displayName; - public global::System.String Tag + public global::System.String Name { - get => _value_tag; + get => _value_name; init { - _set_tag = true; - _value_tag = value; + _set_name = true; + _value_name = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsNameSet => _set_name; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class StageConditionUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "ValidateClientInput"; + public global::System.String TypeName => "StageConditionUpdateInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -137462,48 +138942,23 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StageConditionUpdateInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsClientIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("clientId", FormatClientId(input.ClientId))); - } - - if (inputInfo.IsOperationsSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("operations", FormatOperations(input.Operations))); - } - - if (inputInfo.IsStageSet) + if (inputInfo.IsAfterStageSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("afterStage", FormatAfterStage(input.AfterStage))); } return fields; } - private global::System.Object? FormatClientId(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _iDFormatter.Format(input); - } - - private global::System.Object? FormatOperations(global::StrawberryShake.Upload input) - { - return _uploadFormatter.Format(input); - } - - private global::System.Object? FormatStage(global::System.String input) + private global::System.Object? FormatAfterStage(global::System.String input) { if (input is null) { @@ -137516,9 +138971,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidateClientInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo + public partial record StageConditionUpdateInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo { - public virtual global::System.Boolean Equals(ValidateClientInput? other) + public virtual global::System.Boolean Equals(StageConditionUpdateInput? other) { if (ReferenceEquals(null, other)) { @@ -137535,7 +138990,7 @@ public partial record ValidateClientInput : global::ChilliCream.Nitro.CommandLin return false; } - return (ClientId.Equals(other.ClientId)) && Operations.Equals(other.Operations) && Stage.Equals(other.Stage); + return (AfterStage.Equals(other.AfterStage)); } public override global::System.Int32 GetHashCode() @@ -137543,70 +138998,42 @@ public partial record ValidateClientInput : global::ChilliCream.Nitro.CommandLin unchecked { int hash = 5; - hash ^= 397 * ClientId.GetHashCode(); - hash ^= 397 * Operations.GetHashCode(); - hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * AfterStage.GetHashCode(); return hash; } } - private global::System.String _value_clientId = default !; - private global::System.Boolean _set_clientId; - private global::StrawberryShake.Upload _value_operations; - private global::System.Boolean _set_operations; - private global::System.String _value_stage = default !; - private global::System.Boolean _set_stage; - public global::System.String ClientId - { - get => _value_clientId; - init - { - _set_clientId = true; - _value_clientId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsClientIdSet => _set_clientId; - - public global::StrawberryShake.Upload Operations - { - get => _value_operations; - init - { - _set_operations = true; - _value_operations = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsOperationsSet => _set_operations; - - public global::System.String Stage + private global::System.String _value_afterStage = default !; + private global::System.Boolean _set_afterStage; + public global::System.String AfterStage { - get => _value_stage; + get => _value_afterStage; init { - _set_stage = true; - _value_stage = value; + _set_afterStage = true; + _value_afterStage = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientInputInfo.IsStageSet => _set_stage; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo.IsAfterStageSet => _set_afterStage; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CreateApiKeyInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "UploadFusionSubgraphInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _apiKeyPermissionScopeInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _roleAssigmentConditionInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "CreateApiKeyInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _apiKeyPermissionScopeInputFormatter = serializerResolver.GetInputValueFormatter("ApiKeyPermissionScopeInput"); + _roleAssigmentConditionInputFormatter = serializerResolver.GetInputValueFormatter("RoleAssigmentConditionInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -137616,63 +139043,87 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) + if (inputInfo.IsNameSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } - if (inputInfo.IsArchiveSet) + if (inputInfo.IsPermissionScopeSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("archive", FormatArchive(input.Archive))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("permissionScope", FormatPermissionScope(input.PermissionScope))); } - if (inputInfo.IsTagSet) + if (inputInfo.IsRoleAssigmentConditionSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("roleAssigmentCondition", FormatRoleAssigmentCondition(input.RoleAssigmentCondition))); + } + + if (inputInfo.IsWorkspaceIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("workspaceId", FormatWorkspaceId(input.WorkspaceId))); } return fields; } - private global::System.Object? FormatApiId(global::System.String input) + private global::System.Object? FormatName(global::System.String? input) + { + if (input is null) + { + return input; + } + else + { + return _stringFormatter.Format(input); + } + } + + private global::System.Object? FormatPermissionScope(global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _iDFormatter.Format(input); + return _apiKeyPermissionScopeInputFormatter.Format(input); } - private global::System.Object? FormatArchive(global::StrawberryShake.Upload input) + private global::System.Object? FormatRoleAssigmentCondition(global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? input) { - return _uploadFormatter.Format(input); + if (input is null) + { + return input; + } + else + { + return _roleAssigmentConditionInputFormatter.Format(input); + } } - private global::System.Object? FormatTag(global::System.String input) + private global::System.Object? FormatWorkspaceId(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); + return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UploadFusionSubgraphInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo + public partial record CreateApiKeyInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo { - public virtual global::System.Boolean Equals(UploadFusionSubgraphInput? other) + public virtual global::System.Boolean Equals(CreateApiKeyInput? other) { if (ReferenceEquals(null, other)) { @@ -137689,7 +139140,7 @@ public partial record UploadFusionSubgraphInput : global::ChilliCream.Nitro.Comm return false; } - return (ApiId.Equals(other.ApiId)) && Archive.Equals(other.Archive) && Tag.Equals(other.Tag); + return (((Name is null && other.Name is null) || Name != null && Name.Equals(other.Name))) && PermissionScope.Equals(other.PermissionScope) && ((RoleAssigmentCondition is null && other.RoleAssigmentCondition is null) || RoleAssigmentCondition != null && RoleAssigmentCondition.Equals(other.RoleAssigmentCondition)) && WorkspaceId.Equals(other.WorkspaceId); } public override global::System.Int32 GetHashCode() @@ -137697,68 +139148,89 @@ public partial record UploadFusionSubgraphInput : global::ChilliCream.Nitro.Comm unchecked { int hash = 5; - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Archive.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); + if (Name != null) + { + hash ^= 397 * Name.GetHashCode(); + } + + hash ^= 397 * PermissionScope.GetHashCode(); + if (RoleAssigmentCondition != null) + { + hash ^= 397 * RoleAssigmentCondition.GetHashCode(); + } + + hash ^= 397 * WorkspaceId.GetHashCode(); return hash; } } - private global::System.String _value_apiId = default !; - private global::System.Boolean _set_apiId; - private global::StrawberryShake.Upload _value_archive; - private global::System.Boolean _set_archive; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - public global::System.String ApiId + private global::System.String? _value_name; + private global::System.Boolean _set_name; + private global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput _value_permissionScope = default !; + private global::System.Boolean _set_permissionScope; + private global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? _value_roleAssigmentCondition; + private global::System.Boolean _set_roleAssigmentCondition; + private global::System.String _value_workspaceId = default !; + private global::System.Boolean _set_workspaceId; + public global::System.String? Name { - get => _value_apiId; + get => _value_name; init { - _set_apiId = true; - _value_apiId = value; + _set_name = true; + _value_name = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsApiIdSet => _set_apiId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsNameSet => _set_name; - public global::StrawberryShake.Upload Archive + public global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput PermissionScope { - get => _value_archive; + get => _value_permissionScope; init { - _set_archive = true; - _value_archive = value; + _set_permissionScope = true; + _value_permissionScope = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsArchiveSet => _set_archive; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsPermissionScopeSet => _set_permissionScope; - public global::System.String Tag + public global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput? RoleAssigmentCondition { - get => _value_tag; + get => _value_roleAssigmentCondition; init { - _set_tag = true; - _value_tag = value; + _set_roleAssigmentCondition = true; + _value_roleAssigmentCondition = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsRoleAssigmentConditionSet => _set_roleAssigmentCondition; + + public global::System.String WorkspaceId + { + get => _value_workspaceId; + init + { + _set_workspaceId = true; + _value_workspaceId = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyInputInfo.IsWorkspaceIdSet => _set_workspaceId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class ApiKeyPermissionScopeInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "CreateMcpFeatureCollectionInput"; + public global::System.String TypeName => "ApiKeyPermissionScopeInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -137768,8 +139240,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ApiKeyPermissionScopeInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); @@ -137781,40 +139253,44 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); } - if (inputInfo.IsNameSet) + if (inputInfo.IsWorkspaceIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("workspaceId", FormatWorkspaceId(input.WorkspaceId))); } return fields; } - private global::System.Object? FormatApiId(global::System.String input) + private global::System.Object? FormatApiId(global::System.String? input) { if (input is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return input; + } + else + { + return _iDFormatter.Format(input); } - - return _iDFormatter.Format(input); } - private global::System.Object? FormatName(global::System.String input) + private global::System.Object? FormatWorkspaceId(global::System.String? input) { if (input is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return input; + } + else + { + return _iDFormatter.Format(input); } - - return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo + public partial record ApiKeyPermissionScopeInput : global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo { - public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionInput? other) + public virtual global::System.Boolean Equals(ApiKeyPermissionScopeInput? other) { if (ReferenceEquals(null, other)) { @@ -137831,7 +139307,7 @@ public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitr return false; } - return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); + return (((ApiId is null && other.ApiId is null) || ApiId != null && ApiId.Equals(other.ApiId))) && ((WorkspaceId is null && other.WorkspaceId is null) || WorkspaceId != null && WorkspaceId.Equals(other.WorkspaceId)); } public override global::System.Int32 GetHashCode() @@ -137839,17 +139315,25 @@ public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitr unchecked { int hash = 5; - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + if (ApiId != null) + { + hash ^= 397 * ApiId.GetHashCode(); + } + + if (WorkspaceId != null) + { + hash ^= 397 * WorkspaceId.GetHashCode(); + } + return hash; } } - private global::System.String _value_apiId = default !; + private global::System.String? _value_apiId; private global::System.Boolean _set_apiId; - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; - public global::System.String ApiId + private global::System.String? _value_workspaceId; + private global::System.Boolean _set_workspaceId; + public global::System.String? ApiId { get => _value_apiId; init @@ -137859,31 +139343,31 @@ public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitr } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo.IsApiIdSet => _set_apiId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo.IsApiIdSet => _set_apiId; - public global::System.String Name + public global::System.String? WorkspaceId { - get => _value_name; + get => _value_workspaceId; init { - _set_name = true; - _value_name = value; + _set_workspaceId = true; + _value_workspaceId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IApiKeyPermissionScopeInputInfo.IsWorkspaceIdSet => _set_workspaceId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class RoleAssigmentConditionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "DeleteMcpFeatureCollectionByIdInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _roleAssignmentStageAuthorizationConditionInputFormatter = default !; + public global::System.String TypeName => "RoleAssigmentConditionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _roleAssignmentStageAuthorizationConditionInputFormatter = serializerResolver.GetInputValueFormatter("RoleAssignmentStageAuthorizationConditionInput"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -137893,38 +139377,40 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RoleAssigmentConditionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsMcpFeatureCollectionIdSet) + if (inputInfo.IsStageAuthorizationConditionSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("stageAuthorizationCondition", FormatStageAuthorizationCondition(input.StageAuthorizationCondition))); } return fields; } - private global::System.Object? FormatMcpFeatureCollectionId(global::System.String input) + private global::System.Object? FormatStageAuthorizationCondition(global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? input) { if (input is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return input; + } + else + { + return _roleAssignmentStageAuthorizationConditionInputFormatter.Format(input); } - - return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteMcpFeatureCollectionByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo + public partial record RoleAssigmentConditionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo { - public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdInput? other) + public virtual global::System.Boolean Equals(RoleAssigmentConditionInput? other) { if (ReferenceEquals(null, other)) { @@ -137941,7 +139427,7 @@ public partial record DeleteMcpFeatureCollectionByIdInput : global::ChilliCream. return false; } - return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)); + return (((StageAuthorizationCondition is null && other.StageAuthorizationCondition is null) || StageAuthorizationCondition != null && StageAuthorizationCondition.Equals(other.StageAuthorizationCondition))); } public override global::System.Int32 GetHashCode() @@ -137949,39 +139435,39 @@ public partial record DeleteMcpFeatureCollectionByIdInput : global::ChilliCream. unchecked { int hash = 5; - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + if (StageAuthorizationCondition != null) + { + hash ^= 397 * StageAuthorizationCondition.GetHashCode(); + } + return hash; } } - private global::System.String _value_mcpFeatureCollectionId = default !; - private global::System.Boolean _set_mcpFeatureCollectionId; - public global::System.String McpFeatureCollectionId + private global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? _value_stageAuthorizationCondition; + private global::System.Boolean _set_stageAuthorizationCondition; + public global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput? StageAuthorizationCondition { - get => _value_mcpFeatureCollectionId; + get => _value_stageAuthorizationCondition; init { - _set_mcpFeatureCollectionId = true; - _value_mcpFeatureCollectionId = value; + _set_stageAuthorizationCondition = true; + _value_stageAuthorizationCondition = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssigmentConditionInputInfo.IsStageAuthorizationConditionSet => _set_stageAuthorizationCondition; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class RoleAssignmentStageAuthorizationConditionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "PublishMcpFeatureCollectionInput"; + public global::System.String TypeName => "RoleAssignmentStageAuthorizationConditionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -137992,102 +139478,133 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RoleAssignmentStageAuthorizationConditionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsForceSet) + if (inputInfo.IsNameSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } - if (inputInfo.IsMcpFeatureCollectionIdSet) + return fields; + } + + private global::System.Object? FormatName(global::System.String input) + { + if (input is null) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); + throw new global::System.ArgumentNullException(nameof(input)); } - if (inputInfo.IsStageSet) + return _stringFormatter.Format(input); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record RoleAssignmentStageAuthorizationConditionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo + { + public virtual global::System.Boolean Equals(RoleAssignmentStageAuthorizationConditionInput? other) + { + if (ReferenceEquals(null, other)) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + return false; } - if (inputInfo.IsTagSet) + if (ReferenceEquals(this, other)) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + return true; } - if (inputInfo.IsWaitForApprovalSet) + if (other.GetType() != GetType()) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); + return false; } - return fields; + return (Name.Equals(other.Name)); } - private global::System.Object? FormatForce(global::System.Boolean? input) + public override global::System.Int32 GetHashCode() { - if (input is null) - { - return input; - } - else + unchecked { - return _booleanFormatter.Format(input); + int hash = 5; + hash ^= 397 * Name.GetHashCode(); + return hash; } } - private global::System.Object? FormatMcpFeatureCollectionId(global::System.String input) + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.String Name { - if (input is null) + get => _value_name; + init { - throw new global::System.ArgumentNullException(nameof(input)); + _set_name = true; + _value_name = value; } + } - return _iDFormatter.Format(input); + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRoleAssignmentStageAuthorizationConditionInputInfo.IsNameSet => _set_name; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "DeleteApiKeyInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private global::System.Object? FormatStage(global::System.String input) + public global::System.Object? Format(global::System.Object? runtimeValue) { - if (input is null) + if (runtimeValue is null) { - throw new global::System.ArgumentNullException(nameof(input)); + return null; } - return _stringFormatter.Format(input); - } + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); + } - private global::System.Object? FormatTag(global::System.String input) - { - if (input is null) + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsApiKeyIdSet) { - throw new global::System.ArgumentNullException(nameof(input)); + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiKeyId", FormatApiKeyId(input.ApiKeyId))); } - return _stringFormatter.Format(input); + return fields; } - private global::System.Object? FormatWaitForApproval(global::System.Boolean? input) + private global::System.Object? FormatApiKeyId(global::System.String input) { if (input is null) { - return input; - } - else - { - return _booleanFormatter.Format(input); + throw new global::System.ArgumentNullException(nameof(input)); } + + return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo + public partial record DeleteApiKeyInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo { - public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionInput? other) + public virtual global::System.Boolean Equals(DeleteApiKeyInput? other) { if (ReferenceEquals(null, other)) { @@ -138104,7 +139621,7 @@ public partial record PublishMcpFeatureCollectionInput : global::ChilliCream.Nit return false; } - return (global::System.Object.Equals(Force, other.Force)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); + return (ApiKeyId.Equals(other.ApiKeyId)); } public override global::System.Int32 GetHashCode() @@ -138112,92 +139629,24 @@ public partial record PublishMcpFeatureCollectionInput : global::ChilliCream.Nit unchecked { int hash = 5; - if (Force != null) - { - hash ^= 397 * Force.GetHashCode(); - } - - hash ^= 397 * McpFeatureCollectionId.GetHashCode(); - hash ^= 397 * Stage.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); - if (WaitForApproval != null) - { - hash ^= 397 * WaitForApproval.GetHashCode(); - } - + hash ^= 397 * ApiKeyId.GetHashCode(); return hash; } } - private global::System.Boolean? _value_force; - private global::System.Boolean _set_force; - private global::System.String _value_mcpFeatureCollectionId = default !; - private global::System.Boolean _set_mcpFeatureCollectionId; - private global::System.String _value_stage = default !; - private global::System.Boolean _set_stage; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - private global::System.Boolean? _value_waitForApproval; - private global::System.Boolean _set_waitForApproval; - public global::System.Boolean? Force - { - get => _value_force; - init - { - _set_force = true; - _value_force = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsForceSet => _set_force; - - public global::System.String McpFeatureCollectionId - { - get => _value_mcpFeatureCollectionId; - init - { - _set_mcpFeatureCollectionId = true; - _value_mcpFeatureCollectionId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; - - public global::System.String Stage - { - get => _value_stage; - init - { - _set_stage = true; - _value_stage = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsStageSet => _set_stage; - - public global::System.String Tag - { - get => _value_tag; - init - { - _set_tag = true; - _value_tag = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsTagSet => _set_tag; - - public global::System.Boolean? WaitForApproval + private global::System.String _value_apiKeyId = default !; + private global::System.Boolean _set_apiKeyId; + public global::System.String ApiKeyId { - get => _value_waitForApproval; + get => _value_apiKeyId; init { - _set_waitForApproval = true; - _value_waitForApproval = value; + _set_apiKeyId = true; + _value_apiKeyId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyInputInfo.IsApiKeyIdSet => _set_apiKeyId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator @@ -138206,6 +139655,7 @@ public partial class UploadMcpFeatureCollectionInputInputValueFormatter : global { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; public global::System.String TypeName => "UploadMcpFeatureCollectionInput"; @@ -138213,6 +139663,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver { _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -138241,6 +139692,11 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + if (inputInfo.IsTagSet) { fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); @@ -138264,6 +139720,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatTag(global::System.String input) { if (input is null) @@ -138296,7 +139764,7 @@ public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitr return false; } - return (Collection.Equals(other.Collection)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && Tag.Equals(other.Tag); + return (Collection.Equals(other.Collection)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -138306,6 +139774,11 @@ public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitr int hash = 5; hash ^= 397 * Collection.GetHashCode(); hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Tag.GetHashCode(); return hash; } @@ -138315,6 +139788,8 @@ public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitr private global::System.Boolean _set_collection; private global::System.String _value_mcpFeatureCollectionId = default !; private global::System.Boolean _set_mcpFeatureCollectionId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_tag = default !; private global::System.Boolean _set_tag; public global::StrawberryShake.Upload Collection @@ -138341,6 +139816,18 @@ public partial record UploadMcpFeatureCollectionInput : global::ChilliCream.Nitr global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionInputInfo.IsSourceSet => _set_source; + public global::System.String Tag { get => _value_tag; @@ -138360,6 +139847,7 @@ public partial class ValidateMcpFeatureCollectionInputInputValueFormatter : glob { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; public global::System.String TypeName => "ValidateMcpFeatureCollectionInput"; @@ -138367,6 +139855,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver { _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -138395,6 +139884,11 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + if (inputInfo.IsStageSet) { fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); @@ -138418,6 +139912,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatStage(global::System.String input) { if (input is null) @@ -138450,7 +139956,7 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni return false; } - return (Collection.Equals(other.Collection)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && Stage.Equals(other.Stage); + return (Collection.Equals(other.Collection)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage); } public override global::System.Int32 GetHashCode() @@ -138460,6 +139966,11 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni int hash = 5; hash ^= 397 * Collection.GetHashCode(); hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Stage.GetHashCode(); return hash; } @@ -138469,6 +139980,8 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni private global::System.Boolean _set_collection; private global::System.String _value_mcpFeatureCollectionId = default !; private global::System.Boolean _set_mcpFeatureCollectionId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_stage = default !; private global::System.Boolean _set_stage; public global::StrawberryShake.Upload Collection @@ -138495,6 +140008,18 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionInputInfo.IsSourceSet => _set_source; + public global::System.String Stage { get => _value_stage; @@ -138510,16 +140035,14 @@ public partial record ValidateMcpFeatureCollectionInput : global::ChilliCream.Ni // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class DeleteMcpFeatureCollectionByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "CreateOpenApiCollectionInput"; + public global::System.String TypeName => "DeleteMcpFeatureCollectionByIdInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -138529,28 +140052,23 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); - } - - if (inputInfo.IsNameSet) + if (inputInfo.IsMcpFeatureCollectionIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); } return fields; } - private global::System.Object? FormatApiId(global::System.String input) + private global::System.Object? FormatMcpFeatureCollectionId(global::System.String input) { if (input is null) { @@ -138559,23 +140077,13 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } - - private global::System.Object? FormatName(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); - } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo + public partial record DeleteMcpFeatureCollectionByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo { - public virtual global::System.Boolean Equals(CreateOpenApiCollectionInput? other) + public virtual global::System.Boolean Equals(DeleteMcpFeatureCollectionByIdInput? other) { if (ReferenceEquals(null, other)) { @@ -138592,7 +140100,7 @@ public partial record CreateOpenApiCollectionInput : global::ChilliCream.Nitro.C return false; } - return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); + return (McpFeatureCollectionId.Equals(other.McpFeatureCollectionId)); } public override global::System.Int32 GetHashCode() @@ -138600,51 +140108,38 @@ public partial record CreateOpenApiCollectionInput : global::ChilliCream.Nitro.C unchecked { int hash = 5; - hash ^= 397 * ApiId.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); return hash; } } - private global::System.String _value_apiId = default !; - private global::System.Boolean _set_apiId; - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; - public global::System.String ApiId - { - get => _value_apiId; - init - { - _set_apiId = true; - _value_apiId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo.IsApiIdSet => _set_apiId; - - public global::System.String Name + private global::System.String _value_mcpFeatureCollectionId = default !; + private global::System.Boolean _set_mcpFeatureCollectionId; + public global::System.String McpFeatureCollectionId { - get => _value_name; + get => _value_mcpFeatureCollectionId; init { - _set_name = true; - _value_name = value; + _set_mcpFeatureCollectionId = true; + _value_mcpFeatureCollectionId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CreateMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "DeleteOpenApiCollectionByIdInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "CreateMcpFeatureCollectionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -138654,23 +140149,28 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsOpenApiCollectionIdSet) + if (inputInfo.IsApiIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + } + + if (inputInfo.IsNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } return fields; } - private global::System.Object? FormatOpenApiCollectionId(global::System.String input) + private global::System.Object? FormatApiId(global::System.String input) { if (input is null) { @@ -138679,13 +140179,23 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } + + private global::System.Object? FormatName(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteOpenApiCollectionByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo + public partial record CreateMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo { - public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdInput? other) + public virtual global::System.Boolean Equals(CreateMcpFeatureCollectionInput? other) { if (ReferenceEquals(null, other)) { @@ -138702,7 +140212,7 @@ public partial record DeleteOpenApiCollectionByIdInput : global::ChilliCream.Nit return false; } - return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)); + return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); } public override global::System.Int32 GetHashCode() @@ -138710,39 +140220,56 @@ public partial record DeleteOpenApiCollectionByIdInput : global::ChilliCream.Nit unchecked { int hash = 5; - hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); return hash; } } - private global::System.String _value_openApiCollectionId = default !; - private global::System.Boolean _set_openApiCollectionId; - public global::System.String OpenApiCollectionId + private global::System.String _value_apiId = default !; + private global::System.Boolean _set_apiId; + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.String ApiId { - get => _value_openApiCollectionId; + get => _value_apiId; init { - _set_openApiCollectionId = true; - _value_openApiCollectionId = value; + _set_apiId = true; + _value_apiId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo.IsApiIdSet => _set_apiId; + + public global::System.String Name + { + get => _value_name; + init + { + _set_name = true; + _value_name = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionInputInfo.IsNameSet => _set_name; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class PublishMcpFeatureCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "PublishOpenApiCollectionInput"; + public global::System.String TypeName => "PublishMcpFeatureCollectionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -138753,8 +140280,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); @@ -138766,9 +140293,14 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); } - if (inputInfo.IsOpenApiCollectionIdSet) + if (inputInfo.IsMcpFeatureCollectionIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("mcpFeatureCollectionId", FormatMcpFeatureCollectionId(input.McpFeatureCollectionId))); + } + + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); } if (inputInfo.IsStageSet) @@ -138801,7 +140333,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } - private global::System.Object? FormatOpenApiCollectionId(global::System.String input) + private global::System.Object? FormatMcpFeatureCollectionId(global::System.String input) { if (input is null) { @@ -138811,6 +140343,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatStage(global::System.String input) { if (input is null) @@ -138846,9 +140390,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo + public partial record PublishMcpFeatureCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo { - public virtual global::System.Boolean Equals(PublishOpenApiCollectionInput? other) + public virtual global::System.Boolean Equals(PublishMcpFeatureCollectionInput? other) { if (ReferenceEquals(null, other)) { @@ -138865,7 +140409,7 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. return false; } - return (global::System.Object.Equals(Force, other.Force)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); + return (global::System.Object.Equals(Force, other.Force)) && McpFeatureCollectionId.Equals(other.McpFeatureCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); } public override global::System.Int32 GetHashCode() @@ -138878,7 +140422,12 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. hash ^= 397 * Force.GetHashCode(); } - hash ^= 397 * OpenApiCollectionId.GetHashCode(); + hash ^= 397 * McpFeatureCollectionId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Stage.GetHashCode(); hash ^= 397 * Tag.GetHashCode(); if (WaitForApproval != null) @@ -138892,8 +140441,10 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. private global::System.Boolean? _value_force; private global::System.Boolean _set_force; - private global::System.String _value_openApiCollectionId = default !; - private global::System.Boolean _set_openApiCollectionId; + private global::System.String _value_mcpFeatureCollectionId = default !; + private global::System.Boolean _set_mcpFeatureCollectionId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_stage = default !; private global::System.Boolean _set_stage; private global::System.String _value_tag = default !; @@ -138910,19 +140461,31 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsForceSet => _set_force; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsForceSet => _set_force; - public global::System.String OpenApiCollectionId + public global::System.String McpFeatureCollectionId { - get => _value_openApiCollectionId; + get => _value_mcpFeatureCollectionId; init { - _set_openApiCollectionId = true; - _value_openApiCollectionId = value; + _set_mcpFeatureCollectionId = true; + _value_mcpFeatureCollectionId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsMcpFeatureCollectionIdSet => _set_mcpFeatureCollectionId; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsSourceSet => _set_source; public global::System.String Stage { @@ -138934,7 +140497,7 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsStageSet => _set_stage; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsStageSet => _set_stage; public global::System.String Tag { @@ -138946,7 +140509,7 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsTagSet => _set_tag; public global::System.Boolean? WaitForApproval { @@ -138958,23 +140521,21 @@ public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro. } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CreatePersonalAccessTokenInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "UploadOpenApiCollectionInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _dateTimeFormatter = default !; + public global::System.String TypeName => "CreatePersonalAccessTokenInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _dateTimeFormatter = serializerResolver.GetInputValueFormatter("DateTime"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -138984,63 +140545,48 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsCollectionSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("collection", FormatCollection(input.Collection))); - } - - if (inputInfo.IsOpenApiCollectionIdSet) + if (inputInfo.IsDescriptionSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("description", FormatDescription(input.Description))); } - if (inputInfo.IsTagSet) + if (inputInfo.IsExpiresAtSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("expiresAt", FormatExpiresAt(input.ExpiresAt))); } return fields; } - private global::System.Object? FormatCollection(global::StrawberryShake.Upload input) - { - return _uploadFormatter.Format(input); - } - - private global::System.Object? FormatOpenApiCollectionId(global::System.String input) + private global::System.Object? FormatDescription(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _iDFormatter.Format(input); + return _stringFormatter.Format(input); } - private global::System.Object? FormatTag(global::System.String input) + private global::System.Object? FormatExpiresAt(global::System.DateTimeOffset input) { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); + return _dateTimeFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UploadOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo + public partial record CreatePersonalAccessTokenInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo { - public virtual global::System.Boolean Equals(UploadOpenApiCollectionInput? other) + public virtual global::System.Boolean Equals(CreatePersonalAccessTokenInput? other) { if (ReferenceEquals(null, other)) { @@ -139057,7 +140603,7 @@ public partial record UploadOpenApiCollectionInput : global::ChilliCream.Nitro.C return false; } - return (Collection.Equals(other.Collection)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && Tag.Equals(other.Tag); + return (Description.Equals(other.Description)) && ExpiresAt.Equals(other.ExpiresAt); } public override global::System.Int32 GetHashCode() @@ -139065,69 +140611,151 @@ public partial record UploadOpenApiCollectionInput : global::ChilliCream.Nitro.C unchecked { int hash = 5; - hash ^= 397 * Collection.GetHashCode(); - hash ^= 397 * OpenApiCollectionId.GetHashCode(); - hash ^= 397 * Tag.GetHashCode(); + hash ^= 397 * Description.GetHashCode(); + hash ^= 397 * ExpiresAt.GetHashCode(); return hash; } } - private global::StrawberryShake.Upload _value_collection; - private global::System.Boolean _set_collection; - private global::System.String _value_openApiCollectionId = default !; - private global::System.Boolean _set_openApiCollectionId; - private global::System.String _value_tag = default !; - private global::System.Boolean _set_tag; - public global::StrawberryShake.Upload Collection + private global::System.String _value_description = default !; + private global::System.Boolean _set_description; + private global::System.DateTimeOffset _value_expiresAt; + private global::System.Boolean _set_expiresAt; + public global::System.String Description { - get => _value_collection; + get => _value_description; init { - _set_collection = true; - _value_collection = value; + _set_description = true; + _value_description = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsCollectionSet => _set_collection; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo.IsDescriptionSet => _set_description; - public global::System.String OpenApiCollectionId + public global::System.DateTimeOffset ExpiresAt { - get => _value_openApiCollectionId; + get => _value_expiresAt; init { - _set_openApiCollectionId = true; - _value_openApiCollectionId = value; + _set_expiresAt = true; + _value_expiresAt = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo.IsExpiresAtSet => _set_expiresAt; + } - public global::System.String Tag + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class RevokePersonalAccessTokenInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "RevokePersonalAccessTokenInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - get => _value_tag; + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + } + + public global::System.Object? Format(global::System.Object? runtimeValue) + { + if (runtimeValue is null) + { + return null; + } + + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); + } + + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("id", FormatId(input.Id))); + } + + return fields; + } + + private global::System.Object? FormatId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record RevokePersonalAccessTokenInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo + { + public virtual global::System.Boolean Equals(RevokePersonalAccessTokenInput? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Id.Equals(other.Id)); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Id.GetHashCode(); + return hash; + } + } + + private global::System.String _value_id = default !; + private global::System.Boolean _set_id; + public global::System.String Id + { + get => _value_id; init { - _set_tag = true; - _value_tag = value; + _set_id = true; + _value_id = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsTagSet => _set_tag; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo.IsIdSet => _set_id; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class UploadOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "ValidateOpenApiCollectionInput"; + public global::System.String TypeName => "UploadOpenApiCollectionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -139138,8 +140766,8 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); @@ -139156,9 +140784,14 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); } - if (inputInfo.IsStageSet) + if (inputInfo.IsSourceSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); } return fields; @@ -139179,7 +140812,19 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } - private global::System.Object? FormatStage(global::System.String input) + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + + private global::System.Object? FormatTag(global::System.String input) { if (input is null) { @@ -139192,9 +140837,9 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo + public partial record UploadOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo { - public virtual global::System.Boolean Equals(ValidateOpenApiCollectionInput? other) + public virtual global::System.Boolean Equals(UploadOpenApiCollectionInput? other) { if (ReferenceEquals(null, other)) { @@ -139211,7 +140856,7 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro return false; } - return (Collection.Equals(other.Collection)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && Stage.Equals(other.Stage); + return (Collection.Equals(other.Collection)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -139221,7 +140866,12 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro int hash = 5; hash ^= 397 * Collection.GetHashCode(); hash ^= 397 * OpenApiCollectionId.GetHashCode(); - hash ^= 397 * Stage.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + + hash ^= 397 * Tag.GetHashCode(); return hash; } } @@ -139230,8 +140880,10 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro private global::System.Boolean _set_collection; private global::System.String _value_openApiCollectionId = default !; private global::System.Boolean _set_openApiCollectionId; - private global::System.String _value_stage = default !; - private global::System.Boolean _set_stage; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; public global::StrawberryShake.Upload Collection { get => _value_collection; @@ -139242,7 +140894,7 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsCollectionSet => _set_collection; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsCollectionSet => _set_collection; public global::System.String OpenApiCollectionId { @@ -139254,33 +140906,49 @@ public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; - public global::System.String Stage + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source { - get => _value_stage; + get => _value_source; init { - _set_stage = true; - _value_stage = value; + _set_source = true; + _value_source = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsStageSet => _set_stage; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsSourceSet => _set_source; + + public global::System.String Tag + { + get => _value_tag; + init + { + _set_tag = true; + _value_tag = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionInputInfo.IsTagSet => _set_tag; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class PublishOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { + private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _dateTimeFormatter = default !; - public global::System.String TypeName => "CreatePersonalAccessTokenInput"; + public global::System.String TypeName => "PublishOpenApiCollectionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _dateTimeFormatter = serializerResolver.GetInputValueFormatter("DateTime"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -139290,28 +140958,82 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsDescriptionSet) + if (inputInfo.IsForceSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("description", FormatDescription(input.Description))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); } - if (inputInfo.IsExpiresAtSet) + if (inputInfo.IsOpenApiCollectionIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("expiresAt", FormatExpiresAt(input.ExpiresAt))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); } - return fields; + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsStageSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); + } + + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + } + + if (inputInfo.IsWaitForApprovalSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); + } + + return fields; } - private global::System.Object? FormatDescription(global::System.String input) + private global::System.Object? FormatForce(global::System.Boolean? input) + { + if (input is null) + { + return input; + } + else + { + return _booleanFormatter.Format(input); + } + } + + private global::System.Object? FormatOpenApiCollectionId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + + private global::System.Object? FormatStage(global::System.String input) { if (input is null) { @@ -139321,17 +141043,34 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _stringFormatter.Format(input); } - private global::System.Object? FormatExpiresAt(global::System.DateTimeOffset input) + private global::System.Object? FormatTag(global::System.String input) { - return _dateTimeFormatter.Format(input); + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } + + private global::System.Object? FormatWaitForApproval(global::System.Boolean? input) + { + if (input is null) + { + return input; + } + else + { + return _booleanFormatter.Format(input); + } } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreatePersonalAccessTokenInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo + public partial record PublishOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo { - public virtual global::System.Boolean Equals(CreatePersonalAccessTokenInput? other) + public virtual global::System.Boolean Equals(PublishOpenApiCollectionInput? other) { if (ReferenceEquals(null, other)) { @@ -139348,7 +141087,7 @@ public partial record CreatePersonalAccessTokenInput : global::ChilliCream.Nitro return false; } - return (Description.Equals(other.Description)) && ExpiresAt.Equals(other.ExpiresAt); + return (global::System.Object.Equals(Force, other.Force)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); } public override global::System.Int32 GetHashCode() @@ -139356,51 +141095,129 @@ public partial record CreatePersonalAccessTokenInput : global::ChilliCream.Nitro unchecked { int hash = 5; - hash ^= 397 * Description.GetHashCode(); - hash ^= 397 * ExpiresAt.GetHashCode(); + if (Force != null) + { + hash ^= 397 * Force.GetHashCode(); + } + + hash ^= 397 * OpenApiCollectionId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + + hash ^= 397 * Stage.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); + if (WaitForApproval != null) + { + hash ^= 397 * WaitForApproval.GetHashCode(); + } + return hash; } } - private global::System.String _value_description = default !; - private global::System.Boolean _set_description; - private global::System.DateTimeOffset _value_expiresAt; - private global::System.Boolean _set_expiresAt; - public global::System.String Description + private global::System.Boolean? _value_force; + private global::System.Boolean _set_force; + private global::System.String _value_openApiCollectionId = default !; + private global::System.Boolean _set_openApiCollectionId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_stage = default !; + private global::System.Boolean _set_stage; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + private global::System.Boolean? _value_waitForApproval; + private global::System.Boolean _set_waitForApproval; + public global::System.Boolean? Force { - get => _value_description; + get => _value_force; init { - _set_description = true; - _value_description = value; + _set_force = true; + _value_force = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo.IsDescriptionSet => _set_description; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsForceSet => _set_force; - public global::System.DateTimeOffset ExpiresAt + public global::System.String OpenApiCollectionId { - get => _value_expiresAt; + get => _value_openApiCollectionId; init { - _set_expiresAt = true; - _value_expiresAt = value; + _set_openApiCollectionId = true; + _value_openApiCollectionId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenInputInfo.IsExpiresAtSet => _set_expiresAt; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsSourceSet => _set_source; + + public global::System.String Stage + { + get => _value_stage; + init + { + _set_stage = true; + _value_stage = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsStageSet => _set_stage; + + public global::System.String Tag + { + get => _value_tag; + init + { + _set_tag = true; + _value_tag = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsTagSet => _set_tag; + + public global::System.Boolean? WaitForApproval + { + get => _value_waitForApproval; + init + { + _set_waitForApproval = true; + _value_waitForApproval = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionInputInfo.IsWaitForApprovalSet => _set_waitForApproval; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class ValidateOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { + private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "RevokePersonalAccessTokenInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "ValidateOpenApiCollectionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -139410,23 +141227,43 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsIdSet) + if (inputInfo.IsCollectionSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("id", FormatId(input.Id))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("collection", FormatCollection(input.Collection))); + } + + if (inputInfo.IsOpenApiCollectionIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); + } + + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsStageSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); } return fields; } - private global::System.Object? FormatId(global::System.String input) + private global::System.Object? FormatCollection(global::StrawberryShake.Upload input) + { + return _uploadFormatter.Format(input); + } + + private global::System.Object? FormatOpenApiCollectionId(global::System.String input) { if (input is null) { @@ -139435,13 +141272,35 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } + + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + + private global::System.Object? FormatStage(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record RevokePersonalAccessTokenInput : global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo + public partial record ValidateOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo { - public virtual global::System.Boolean Equals(RevokePersonalAccessTokenInput? other) + public virtual global::System.Boolean Equals(ValidateOpenApiCollectionInput? other) { if (ReferenceEquals(null, other)) { @@ -139458,7 +141317,7 @@ public partial record RevokePersonalAccessTokenInput : global::ChilliCream.Nitro return false; } - return (Id.Equals(other.Id)); + return (Collection.Equals(other.Collection)) && OpenApiCollectionId.Equals(other.OpenApiCollectionId) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage); } public override global::System.Int32 GetHashCode() @@ -139466,24 +141325,390 @@ public partial record RevokePersonalAccessTokenInput : global::ChilliCream.Nitro unchecked { int hash = 5; - hash ^= 397 * Id.GetHashCode(); + hash ^= 397 * Collection.GetHashCode(); + hash ^= 397 * OpenApiCollectionId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + + hash ^= 397 * Stage.GetHashCode(); return hash; } } - private global::System.String _value_id = default !; - private global::System.Boolean _set_id; - public global::System.String Id + private global::StrawberryShake.Upload _value_collection; + private global::System.Boolean _set_collection; + private global::System.String _value_openApiCollectionId = default !; + private global::System.Boolean _set_openApiCollectionId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; + private global::System.String _value_stage = default !; + private global::System.Boolean _set_stage; + public global::StrawberryShake.Upload Collection { - get => _value_id; + get => _value_collection; init { - _set_id = true; - _value_id = value; + _set_collection = true; + _value_collection = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenInputInfo.IsIdSet => _set_id; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsCollectionSet => _set_collection; + + public global::System.String OpenApiCollectionId + { + get => _value_openApiCollectionId; + init + { + _set_openApiCollectionId = true; + _value_openApiCollectionId = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsSourceSet => _set_source; + + public global::System.String Stage + { + get => _value_stage; + init + { + _set_stage = true; + _value_stage = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionInputInfo.IsStageSet => _set_stage; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateOpenApiCollectionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "CreateOpenApiCollectionInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + } + + public global::System.Object? Format(global::System.Object? runtimeValue) + { + if (runtimeValue is null) + { + return null; + } + + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); + } + + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsApiIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + } + + if (inputInfo.IsNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + } + + return fields; + } + + private global::System.Object? FormatApiId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + + private global::System.Object? FormatName(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record CreateOpenApiCollectionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo + { + public virtual global::System.Boolean Equals(CreateOpenApiCollectionInput? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (ApiId.Equals(other.ApiId)) && Name.Equals(other.Name); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * ApiId.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } + + private global::System.String _value_apiId = default !; + private global::System.Boolean _set_apiId; + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.String ApiId + { + get => _value_apiId; + init + { + _set_apiId = true; + _value_apiId = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo.IsApiIdSet => _set_apiId; + + public global::System.String Name + { + get => _value_name; + init + { + _set_name = true; + _value_name = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionInputInfo.IsNameSet => _set_name; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteOpenApiCollectionByIdInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "DeleteOpenApiCollectionByIdInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + } + + public global::System.Object? Format(global::System.Object? runtimeValue) + { + if (runtimeValue is null) + { + return null; + } + + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); + } + + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsOpenApiCollectionIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("openApiCollectionId", FormatOpenApiCollectionId(input.OpenApiCollectionId))); + } + + return fields; + } + + private global::System.Object? FormatOpenApiCollectionId(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _iDFormatter.Format(input); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DeleteOpenApiCollectionByIdInput : global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo + { + public virtual global::System.Boolean Equals(DeleteOpenApiCollectionByIdInput? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (OpenApiCollectionId.Equals(other.OpenApiCollectionId)); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * OpenApiCollectionId.GetHashCode(); + return hash; + } + } + + private global::System.String _value_openApiCollectionId = default !; + private global::System.Boolean _set_openApiCollectionId; + public global::System.String OpenApiCollectionId + { + get => _value_openApiCollectionId; + init + { + _set_openApiCollectionId = true; + _value_openApiCollectionId = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdInputInfo.IsOpenApiCollectionIdSet => _set_openApiCollectionId; + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateWorkspaceInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + { + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "CreateWorkspaceInput"; + + public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + } + + public global::System.Object? Format(global::System.Object? runtimeValue) + { + if (runtimeValue is null) + { + return null; + } + + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo; + if (input is null || inputInfo is null) + { + throw new global::System.ArgumentException(nameof(runtimeValue)); + } + + var fields = new global::System.Collections.Generic.List>(); + if (inputInfo.IsNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + } + + return fields; + } + + private global::System.Object? FormatName(global::System.String input) + { + if (input is null) + { + throw new global::System.ArgumentNullException(nameof(input)); + } + + return _stringFormatter.Format(input); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record CreateWorkspaceInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo + { + public virtual global::System.Boolean Equals(CreateWorkspaceInput? other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + + if (ReferenceEquals(this, other)) + { + return true; + } + + if (other.GetType() != GetType()) + { + return false; + } + + return (Name.Equals(other.Name)); + } + + public override global::System.Int32 GetHashCode() + { + unchecked + { + int hash = 5; + hash ^= 397 * Name.GetHashCode(); + return hash; + } + } + + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + public global::System.String Name + { + get => _value_name; + init + { + _set_name = true; + _value_name = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo.IsNameSet => _set_name; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator @@ -139492,6 +141717,7 @@ public partial class PublishSchemaInputInputValueFormatter : global::StrawberryS { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; public global::System.String TypeName => "PublishSchemaInput"; @@ -139499,6 +141725,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -139527,6 +141754,11 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("force", FormatForce(input.Force))); } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + if (inputInfo.IsStageSet) { fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); @@ -139567,6 +141799,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatStage(global::System.String input) { if (input is null) @@ -139621,7 +141865,7 @@ public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine return false; } - return (ApiId.Equals(other.ApiId)) && global::System.Object.Equals(Force, other.Force) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); + return (ApiId.Equals(other.ApiId)) && global::System.Object.Equals(Force, other.Force) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); } public override global::System.Int32 GetHashCode() @@ -139635,6 +141879,11 @@ public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine hash ^= 397 * Force.GetHashCode(); } + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Stage.GetHashCode(); hash ^= 397 * Tag.GetHashCode(); if (WaitForApproval != null) @@ -139650,6 +141899,8 @@ public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine private global::System.Boolean _set_apiId; private global::System.Boolean? _value_force; private global::System.Boolean _set_force; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_stage = default !; private global::System.Boolean _set_stage; private global::System.String _value_tag = default !; @@ -139680,6 +141931,18 @@ public partial record PublishSchemaInput : global::ChilliCream.Nitro.CommandLine global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaInputInfo.IsForceSet => _set_force; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaInputInfo.IsSourceSet => _set_source; + public global::System.String Stage { get => _value_stage; @@ -139723,6 +141986,7 @@ public partial class UploadSchemaInputInputValueFormatter : global::StrawberrySh { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; public global::System.String TypeName => "UploadSchemaInput"; @@ -139730,6 +141994,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -139758,6 +142023,11 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("schema", FormatSchema(input.Schema))); } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + if (inputInfo.IsTagSet) { fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); @@ -139781,6 +142051,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _uploadFormatter.Format(input); } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatTag(global::System.String input) { if (input is null) @@ -139813,7 +142095,7 @@ public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (ApiId.Equals(other.ApiId)) && Schema.Equals(other.Schema) && Tag.Equals(other.Tag); + return (ApiId.Equals(other.ApiId)) && Schema.Equals(other.Schema) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -139823,6 +142105,11 @@ public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine. int hash = 5; hash ^= 397 * ApiId.GetHashCode(); hash ^= 397 * Schema.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Tag.GetHashCode(); return hash; } @@ -139832,6 +142119,8 @@ public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine. private global::System.Boolean _set_apiId; private global::StrawberryShake.Upload _value_schema; private global::System.Boolean _set_schema; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_tag = default !; private global::System.Boolean _set_tag; public global::System.String ApiId @@ -139858,6 +142147,18 @@ public partial record UploadSchemaInput : global::ChilliCream.Nitro.CommandLine. global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaInputInfo.IsSchemaSet => _set_schema; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaInputInfo.IsSourceSet => _set_source; + public global::System.String Tag { get => _value_tag; @@ -139877,6 +142178,7 @@ public partial class ValidateSchemaInputInputValueFormatter : global::Strawberry { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; public global::System.String TypeName => "ValidateSchemaInput"; @@ -139884,6 +142186,7 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } @@ -139912,6 +142215,11 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver fields.Add(new global::System.Collections.Generic.KeyValuePair("schema", FormatSchema(input.Schema))); } + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + if (inputInfo.IsStageSet) { fields.Add(new global::System.Collections.Generic.KeyValuePair("stage", FormatStage(input.Stage))); @@ -139935,6 +142243,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _uploadFormatter.Format(input); } + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) + { + if (input is null) + { + return input; + } + else + { + return _sourceMetadataInputFormatter.Format(input); + } + } + private global::System.Object? FormatStage(global::System.String input) { if (input is null) @@ -139967,7 +142287,7 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin return false; } - return (ApiId.Equals(other.ApiId)) && Schema.Equals(other.Schema) && Stage.Equals(other.Stage); + return (ApiId.Equals(other.ApiId)) && Schema.Equals(other.Schema) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && Stage.Equals(other.Stage); } public override global::System.Int32 GetHashCode() @@ -139977,6 +142297,11 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin int hash = 5; hash ^= 397 * ApiId.GetHashCode(); hash ^= 397 * Schema.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * Stage.GetHashCode(); return hash; } @@ -139986,6 +142311,8 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin private global::System.Boolean _set_apiId; private global::StrawberryShake.Upload _value_schema; private global::System.Boolean _set_schema; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_stage = default !; private global::System.Boolean _set_stage; public global::System.String ApiId @@ -140012,6 +142339,18 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaInputInfo.IsSchemaSet => _set_schema; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaInputInfo.IsSourceSet => _set_source; + public global::System.String Stage { get => _value_stage; @@ -140027,16 +142366,14 @@ public partial record ValidateSchemaInput : global::ChilliCream.Nitro.CommandLin // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CancelFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stageUpdateInputFormatter = default !; - public global::System.String TypeName => "UpdateStagesInput"; + public global::System.String TypeName => "CancelFusionConfigurationCompositionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stageUpdateInputFormatter = serializerResolver.GetInputValueFormatter("StageUpdateInput"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -140046,28 +142383,23 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); - } - - if (inputInfo.IsUpdatedStagesSet) + if (inputInfo.IsRequestIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("updatedStages", FormatUpdatedStages(input.UpdatedStages))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); } return fields; } - private global::System.Object? FormatApiId(global::System.String input) + private global::System.Object? FormatRequestId(global::System.String input) { if (input is null) { @@ -140076,34 +142408,13 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return _iDFormatter.Format(input); } - - private global::System.Object? FormatUpdatedStages(global::System.Collections.Generic.IReadOnlyList input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - var input_list = new global::System.Collections.Generic.List(); - foreach (var input_elm in input) - { - if (input_elm is null) - { - throw new global::System.ArgumentNullException(nameof(input_elm)); - } - - input_list.Add(_stageUpdateInputFormatter.Format(input_elm)); - } - - return input_list; - } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UpdateStagesInput : global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo + public partial record CancelFusionConfigurationCompositionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo { - public virtual global::System.Boolean Equals(UpdateStagesInput? other) + public virtual global::System.Boolean Equals(CancelFusionConfigurationCompositionInput? other) { if (ReferenceEquals(null, other)) { @@ -140120,7 +142431,7 @@ public partial record UpdateStagesInput : global::ChilliCream.Nitro.CommandLine. return false; } - return (ApiId.Equals(other.ApiId)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(UpdatedStages, other.UpdatedStages); + return (RequestId.Equals(other.RequestId)); } public override global::System.Int32 GetHashCode() @@ -140128,57 +142439,38 @@ public partial record UpdateStagesInput : global::ChilliCream.Nitro.CommandLine. unchecked { int hash = 5; - hash ^= 397 * ApiId.GetHashCode(); - foreach (var UpdatedStages_elm in UpdatedStages) - { - hash ^= 397 * UpdatedStages_elm.GetHashCode(); - } - + hash ^= 397 * RequestId.GetHashCode(); return hash; } } - private global::System.String _value_apiId = default !; - private global::System.Boolean _set_apiId; - private global::System.Collections.Generic.IReadOnlyList _value_updatedStages = default !; - private global::System.Boolean _set_updatedStages; - public global::System.String ApiId - { - get => _value_apiId; - init - { - _set_apiId = true; - _value_apiId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo.IsApiIdSet => _set_apiId; - - public global::System.Collections.Generic.IReadOnlyList UpdatedStages + private global::System.String _value_requestId = default !; + private global::System.Boolean _set_requestId; + public global::System.String RequestId { - get => _value_updatedStages; + get => _value_requestId; init { - _set_updatedStages = true; - _value_updatedStages = value; + _set_requestId = true; + _value_requestId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesInputInfo.IsUpdatedStagesSet => _set_updatedStages; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StageUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class CommitFusionConfigurationPublishInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _stageConditionUpdateInputFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "StageUpdateInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "CommitFusionConfigurationPublishInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _stageConditionUpdateInputFormatter = serializerResolver.GetInputValueFormatter("StageConditionUpdateInput"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -140188,81 +142480,48 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StageUpdateInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsConditionsSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("conditions", FormatConditions(input.Conditions))); - } - - if (inputInfo.IsDisplayNameSet) + if (inputInfo.IsConfigurationSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("displayName", FormatDisplayName(input.DisplayName))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("configuration", FormatConfiguration(input.Configuration))); } - if (inputInfo.IsNameSet) + if (inputInfo.IsRequestIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); } return fields; } - private global::System.Object? FormatConditions(global::System.Collections.Generic.IReadOnlyList? input) - { - if (input is null) - { - return input; - } - else - { - var input_list = new global::System.Collections.Generic.List(); - foreach (var input_elm in input) - { - if (input_elm is null) - { - throw new global::System.ArgumentNullException(nameof(input_elm)); - } - - input_list.Add(_stageConditionUpdateInputFormatter.Format(input_elm)); - } - - return input_list; - } - } - - private global::System.Object? FormatDisplayName(global::System.String input) + private global::System.Object? FormatConfiguration(global::StrawberryShake.Upload input) { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); + return _uploadFormatter.Format(input); } - private global::System.Object? FormatName(global::System.String input) + private global::System.Object? FormatRequestId(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); + return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record StageUpdateInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo + public partial record CommitFusionConfigurationPublishInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo { - public virtual global::System.Boolean Equals(StageUpdateInput? other) + public virtual global::System.Boolean Equals(CommitFusionConfigurationPublishInput? other) { if (ReferenceEquals(null, other)) { @@ -140279,7 +142538,7 @@ public partial record StageUpdateInput : global::ChilliCream.Nitro.CommandLine.C return false; } - return (global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Conditions, other.Conditions)) && DisplayName.Equals(other.DisplayName) && Name.Equals(other.Name); + return (Configuration.Equals(other.Configuration)) && RequestId.Equals(other.RequestId); } public override global::System.Int32 GetHashCode() @@ -140287,73 +142546,51 @@ public partial record StageUpdateInput : global::ChilliCream.Nitro.CommandLine.C unchecked { int hash = 5; - if (Conditions != null) - { - foreach (var Conditions_elm in Conditions) - { - hash ^= 397 * Conditions_elm.GetHashCode(); - } - } - - hash ^= 397 * DisplayName.GetHashCode(); - hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Configuration.GetHashCode(); + hash ^= 397 * RequestId.GetHashCode(); return hash; } } - private global::System.Collections.Generic.IReadOnlyList? _value_conditions; - private global::System.Boolean _set_conditions; - private global::System.String _value_displayName = default !; - private global::System.Boolean _set_displayName; - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; - public global::System.Collections.Generic.IReadOnlyList? Conditions - { - get => _value_conditions; - init - { - _set_conditions = true; - _value_conditions = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsConditionsSet => _set_conditions; - - public global::System.String DisplayName + private global::StrawberryShake.Upload _value_configuration; + private global::System.Boolean _set_configuration; + private global::System.String _value_requestId = default !; + private global::System.Boolean _set_requestId; + public global::StrawberryShake.Upload Configuration { - get => _value_displayName; + get => _value_configuration; init { - _set_displayName = true; - _value_displayName = value; + _set_configuration = true; + _value_configuration = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsDisplayNameSet => _set_displayName; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo.IsConfigurationSet => _set_configuration; - public global::System.String Name + public global::System.String RequestId { - get => _value_name; + get => _value_requestId; init { - _set_name = true; - _value_name = value; + _set_requestId = true; + _value_requestId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageUpdateInputInfo.IsNameSet => _set_name; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo.IsRequestIdSet => _set_requestId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StageConditionUpdateInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class StartFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "StageConditionUpdateInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + public global::System.String TypeName => "StartFusionConfigurationCompositionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -140363,38 +142600,38 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StageConditionUpdateInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsAfterStageSet) + if (inputInfo.IsRequestIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("afterStage", FormatAfterStage(input.AfterStage))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); } return fields; } - private global::System.Object? FormatAfterStage(global::System.String input) + private global::System.Object? FormatRequestId(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); + return _iDFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record StageConditionUpdateInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo + public partial record StartFusionConfigurationCompositionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo { - public virtual global::System.Boolean Equals(StageConditionUpdateInput? other) + public virtual global::System.Boolean Equals(StartFusionConfigurationCompositionInput? other) { if (ReferenceEquals(null, other)) { @@ -140411,7 +142648,7 @@ public partial record StageConditionUpdateInput : global::ChilliCream.Nitro.Comm return false; } - return (AfterStage.Equals(other.AfterStage)); + return (RequestId.Equals(other.RequestId)); } public override global::System.Int32 GetHashCode() @@ -140419,36 +142656,44 @@ public partial record StageConditionUpdateInput : global::ChilliCream.Nitro.Comm unchecked { int hash = 5; - hash ^= 397 * AfterStage.GetHashCode(); + hash ^= 397 * RequestId.GetHashCode(); return hash; } } - private global::System.String _value_afterStage = default !; - private global::System.Boolean _set_afterStage; - public global::System.String AfterStage + private global::System.String _value_requestId = default !; + private global::System.Boolean _set_requestId; + public global::System.String RequestId { - get => _value_afterStage; + get => _value_requestId; init { - _set_afterStage = true; - _value_afterStage = value; + _set_requestId = true; + _value_requestId = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionUpdateInputInfo.IsAfterStageSet => _set_afterStage; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class BeginFusionConfigurationPublishInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { + private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _sourceMetadataInputFormatter = default !; private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - public global::System.String TypeName => "CreateWorkspaceInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _fusionSubgraphVersionInputFormatter = default !; + private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; + public global::System.String TypeName => "BeginFusionConfigurationPublishInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _sourceMetadataInputFormatter = serializerResolver.GetInputValueFormatter("SourceMetadataInput"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _fusionSubgraphVersionInputFormatter = serializerResolver.GetInputValueFormatter("FusionSubgraphVersionInput"); + _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -140458,179 +142703,114 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsNameSet) + if (inputInfo.IsApiIdSet) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); + fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); + } + + if (inputInfo.IsSourceSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("source", FormatSource(input.Source))); + } + + if (inputInfo.IsStageNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("stageName", FormatStageName(input.StageName))); + } + + if (inputInfo.IsSubgraphApiIdSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("subgraphApiId", FormatSubgraphApiId(input.SubgraphApiId))); + } + + if (inputInfo.IsSubgraphNameSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("subgraphName", FormatSubgraphName(input.SubgraphName))); + } + + if (inputInfo.IsSubgraphsSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("subgraphs", FormatSubgraphs(input.Subgraphs))); + } + + if (inputInfo.IsTagSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); + } + + if (inputInfo.IsWaitForApprovalSet) + { + fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); } return fields; } - private global::System.Object? FormatName(global::System.String input) + private global::System.Object? FormatApiId(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _stringFormatter.Format(input); + return _iDFormatter.Format(input); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateWorkspaceInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo - { - public virtual global::System.Boolean Equals(CreateWorkspaceInput? other) + private global::System.Object? FormatSource(global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? input) { - if (ReferenceEquals(null, other)) + if (input is null) { - return false; + return input; } - - if (ReferenceEquals(this, other)) + else { - return true; + return _sourceMetadataInputFormatter.Format(input); } + } - if (other.GetType() != GetType()) + private global::System.Object? FormatStageName(global::System.String input) + { + if (input is null) { - return false; + throw new global::System.ArgumentNullException(nameof(input)); } - return (Name.Equals(other.Name)); + return _stringFormatter.Format(input); } - public override global::System.Int32 GetHashCode() + private global::System.Object? FormatSubgraphApiId(global::System.String? input) { - unchecked + if (input is null) { - int hash = 5; - hash ^= 397 * Name.GetHashCode(); - return hash; + return input; + } + else + { + return _iDFormatter.Format(input); } } - private global::System.String _value_name = default !; - private global::System.Boolean _set_name; - public global::System.String Name + private global::System.Object? FormatSubgraphName(global::System.String? input) { - get => _value_name; - init + if (input is null) { - _set_name = true; - _value_name = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceInputInfo.IsNameSet => _set_name; - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublishInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter - { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _booleanFormatter = default !; - public global::System.String TypeName => "BeginFusionConfigurationPublishInput"; - - public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _booleanFormatter = serializerResolver.GetInputValueFormatter("Boolean"); - } - - public global::System.Object? Format(global::System.Object? runtimeValue) - { - if (runtimeValue is null) - { - return null; - } - - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo; - if (input is null || inputInfo is null) - { - throw new global::System.ArgumentException(nameof(runtimeValue)); - } - - var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsApiIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("apiId", FormatApiId(input.ApiId))); - } - - if (inputInfo.IsStageNameSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("stageName", FormatStageName(input.StageName))); - } - - if (inputInfo.IsSubgraphApiIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("subgraphApiId", FormatSubgraphApiId(input.SubgraphApiId))); - } - - if (inputInfo.IsSubgraphNameSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("subgraphName", FormatSubgraphName(input.SubgraphName))); - } - - if (inputInfo.IsTagSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); - } - - if (inputInfo.IsWaitForApprovalSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("waitForApproval", FormatWaitForApproval(input.WaitForApproval))); - } - - return fields; - } - - private global::System.Object? FormatApiId(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _iDFormatter.Format(input); - } - - private global::System.Object? FormatStageName(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _stringFormatter.Format(input); - } - - private global::System.Object? FormatSubgraphApiId(global::System.String? input) - { - if (input is null) - { - return input; + return input; } else { - return _iDFormatter.Format(input); + return _stringFormatter.Format(input); } } - private global::System.Object? FormatSubgraphName(global::System.String? input) + private global::System.Object? FormatSubgraphs(global::System.Collections.Generic.IReadOnlyList? input) { if (input is null) { @@ -140638,7 +142818,18 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver } else { - return _stringFormatter.Format(input); + var input_list = new global::System.Collections.Generic.List(); + foreach (var input_elm in input) + { + if (input_elm is null) + { + throw new global::System.ArgumentNullException(nameof(input_elm)); + } + + input_list.Add(_fusionSubgraphVersionInputFormatter.Format(input_elm)); + } + + return input_list; } } @@ -140686,7 +142877,7 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream return false; } - return (ApiId.Equals(other.ApiId)) && StageName.Equals(other.StageName) && ((SubgraphApiId is null && other.SubgraphApiId is null) || SubgraphApiId != null && SubgraphApiId.Equals(other.SubgraphApiId)) && ((SubgraphName is null && other.SubgraphName is null) || SubgraphName != null && SubgraphName.Equals(other.SubgraphName)) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); + return (ApiId.Equals(other.ApiId)) && ((Source is null && other.Source is null) || Source != null && Source.Equals(other.Source)) && StageName.Equals(other.StageName) && ((SubgraphApiId is null && other.SubgraphApiId is null) || SubgraphApiId != null && SubgraphApiId.Equals(other.SubgraphApiId)) && ((SubgraphName is null && other.SubgraphName is null) || SubgraphName != null && SubgraphName.Equals(other.SubgraphName)) && global::StrawberryShake.Internal.ComparisonHelper.SequenceEqual(Subgraphs, other.Subgraphs) && Tag.Equals(other.Tag) && global::System.Object.Equals(WaitForApproval, other.WaitForApproval); } public override global::System.Int32 GetHashCode() @@ -140695,6 +142886,11 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream { int hash = 5; hash ^= 397 * ApiId.GetHashCode(); + if (Source != null) + { + hash ^= 397 * Source.GetHashCode(); + } + hash ^= 397 * StageName.GetHashCode(); if (SubgraphApiId != null) { @@ -140706,6 +142902,14 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream hash ^= 397 * SubgraphName.GetHashCode(); } + if (Subgraphs != null) + { + foreach (var Subgraphs_elm in Subgraphs) + { + hash ^= 397 * Subgraphs_elm.GetHashCode(); + } + } + hash ^= 397 * Tag.GetHashCode(); if (WaitForApproval != null) { @@ -140718,12 +142922,16 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream private global::System.String _value_apiId = default !; private global::System.Boolean _set_apiId; + private global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? _value_source; + private global::System.Boolean _set_source; private global::System.String _value_stageName = default !; private global::System.Boolean _set_stageName; private global::System.String? _value_subgraphApiId; private global::System.Boolean _set_subgraphApiId; private global::System.String? _value_subgraphName; private global::System.Boolean _set_subgraphName; + private global::System.Collections.Generic.IReadOnlyList? _value_subgraphs; + private global::System.Boolean _set_subgraphs; private global::System.String _value_tag = default !; private global::System.Boolean _set_tag; private global::System.Boolean? _value_waitForApproval; @@ -140740,6 +142948,18 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo.IsApiIdSet => _set_apiId; + public global::ChilliCream.Nitro.CommandLine.Client.SourceMetadataInput? Source + { + get => _value_source; + init + { + _set_source = true; + _value_source = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo.IsSourceSet => _set_source; + public global::System.String StageName { get => _value_stageName; @@ -140776,6 +142996,18 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo.IsSubgraphNameSet => _set_subgraphName; + public global::System.Collections.Generic.IReadOnlyList? Subgraphs + { + get => _value_subgraphs; + init + { + _set_subgraphs = true; + _value_subgraphs = value; + } + } + + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IBeginFusionConfigurationPublishInputInfo.IsSubgraphsSet => _set_subgraphs; + public global::System.String Tag { get => _value_tag; @@ -140803,14 +143035,14 @@ public partial record BeginFusionConfigurationPublishInput : global::ChilliCream // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter + public partial class FusionSubgraphVersionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "CancelFusionConfigurationCompositionInput"; + private global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter = default !; + public global::System.String TypeName => "FusionSubgraphVersionInput"; public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } public global::System.Object? Format(global::System.Object? runtimeValue) @@ -140820,145 +143052,53 @@ public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver return null; } - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo; + var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.FusionSubgraphVersionInput; + var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IFusionSubgraphVersionInputInfo; if (input is null || inputInfo is null) { throw new global::System.ArgumentException(nameof(runtimeValue)); } var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsRequestIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); - } - - return fields; - } - - private global::System.Object? FormatRequestId(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _iDFormatter.Format(input); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CancelFusionConfigurationCompositionInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo - { - public virtual global::System.Boolean Equals(CancelFusionConfigurationCompositionInput? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; - } - - return (RequestId.Equals(other.RequestId)); - } - - public override global::System.Int32 GetHashCode() - { - unchecked + if (inputInfo.IsNameSet) { - int hash = 5; - hash ^= 397 * RequestId.GetHashCode(); - return hash; + fields.Add(new global::System.Collections.Generic.KeyValuePair("name", FormatName(input.Name))); } - } - private global::System.String _value_requestId = default !; - private global::System.Boolean _set_requestId; - public global::System.String RequestId - { - get => _value_requestId; - init + if (inputInfo.IsTagSet) { - _set_requestId = true; - _value_requestId = value; + fields.Add(new global::System.Collections.Generic.KeyValuePair("tag", FormatTag(input.Tag))); } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter - { - private global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter = default !; - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "CommitFusionConfigurationPublishInput"; - public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + return fields; } - public global::System.Object? Format(global::System.Object? runtimeValue) + private global::System.Object? FormatName(global::System.String input) { - if (runtimeValue is null) - { - return null; - } - - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo; - if (input is null || inputInfo is null) - { - throw new global::System.ArgumentException(nameof(runtimeValue)); - } - - var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsConfigurationSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("configuration", FormatConfiguration(input.Configuration))); - } - - if (inputInfo.IsRequestIdSet) + if (input is null) { - fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); + throw new global::System.ArgumentNullException(nameof(input)); } - return fields; - } - - private global::System.Object? FormatConfiguration(global::StrawberryShake.Upload input) - { - return _uploadFormatter.Format(input); + return _stringFormatter.Format(input); } - private global::System.Object? FormatRequestId(global::System.String input) + private global::System.Object? FormatTag(global::System.String input) { if (input is null) { throw new global::System.ArgumentNullException(nameof(input)); } - return _iDFormatter.Format(input); + return _stringFormatter.Format(input); } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CommitFusionConfigurationPublishInput : global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo + public partial record FusionSubgraphVersionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IFusionSubgraphVersionInputInfo { - public virtual global::System.Boolean Equals(CommitFusionConfigurationPublishInput? other) + public virtual global::System.Boolean Equals(FusionSubgraphVersionInput? other) { if (ReferenceEquals(null, other)) { @@ -140975,7 +143115,7 @@ public partial record CommitFusionConfigurationPublishInput : global::ChilliCrea return false; } - return (Configuration.Equals(other.Configuration)) && RequestId.Equals(other.RequestId); + return (Name.Equals(other.Name)) && Tag.Equals(other.Tag); } public override global::System.Int32 GetHashCode() @@ -140983,134 +143123,39 @@ public partial record CommitFusionConfigurationPublishInput : global::ChilliCrea unchecked { int hash = 5; - hash ^= 397 * Configuration.GetHashCode(); - hash ^= 397 * RequestId.GetHashCode(); + hash ^= 397 * Name.GetHashCode(); + hash ^= 397 * Tag.GetHashCode(); return hash; } } - private global::StrawberryShake.Upload _value_configuration; - private global::System.Boolean _set_configuration; - private global::System.String _value_requestId = default !; - private global::System.Boolean _set_requestId; - public global::StrawberryShake.Upload Configuration - { - get => _value_configuration; - init - { - _set_configuration = true; - _value_configuration = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo.IsConfigurationSet => _set_configuration; - - public global::System.String RequestId + private global::System.String _value_name = default !; + private global::System.Boolean _set_name; + private global::System.String _value_tag = default !; + private global::System.Boolean _set_tag; + public global::System.String Name { - get => _value_requestId; + get => _value_name; init { - _set_requestId = true; - _value_requestId = value; - } - } - - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishInputInfo.IsRequestIdSet => _set_requestId; - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationCompositionInputInputValueFormatter : global::StrawberryShake.Serialization.IInputObjectFormatter - { - private global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter = default !; - public global::System.String TypeName => "StartFusionConfigurationCompositionInput"; - - public void Initialize(global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - } - - public global::System.Object? Format(global::System.Object? runtimeValue) - { - if (runtimeValue is null) - { - return null; - } - - var input = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput; - var inputInfo = runtimeValue as global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo; - if (input is null || inputInfo is null) - { - throw new global::System.ArgumentException(nameof(runtimeValue)); - } - - var fields = new global::System.Collections.Generic.List>(); - if (inputInfo.IsRequestIdSet) - { - fields.Add(new global::System.Collections.Generic.KeyValuePair("requestId", FormatRequestId(input.RequestId))); - } - - return fields; - } - - private global::System.Object? FormatRequestId(global::System.String input) - { - if (input is null) - { - throw new global::System.ArgumentNullException(nameof(input)); - } - - return _iDFormatter.Format(input); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record StartFusionConfigurationCompositionInput : global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo - { - public virtual global::System.Boolean Equals(StartFusionConfigurationCompositionInput? other) - { - if (ReferenceEquals(null, other)) - { - return false; - } - - if (ReferenceEquals(this, other)) - { - return true; - } - - if (other.GetType() != GetType()) - { - return false; + _set_name = true; + _value_name = value; } - - return (RequestId.Equals(other.RequestId)); } - public override global::System.Int32 GetHashCode() - { - unchecked - { - int hash = 5; - hash ^= 397 * RequestId.GetHashCode(); - return hash; - } - } + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IFusionSubgraphVersionInputInfo.IsNameSet => _set_name; - private global::System.String _value_requestId = default !; - private global::System.Boolean _set_requestId; - public global::System.String RequestId + public global::System.String Tag { - get => _value_requestId; + get => _value_tag; init { - _set_requestId = true; - _value_requestId = value; + _set_tag = true; + _value_tag = value; } } - global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; + global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IFusionSubgraphVersionInputInfo.IsTagSet => _set_tag; } // StrawberryShake.CodeGeneration.CSharp.Generators.InputValueFormatterGenerator @@ -141235,42 +143280,6 @@ public partial record ValidateFusionConfigurationCompositionInput : global::Chil global::System.Boolean global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionInputInfo.IsRequestIdSet => _set_requestId; } - // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public enum ApiKind - { - Collection, - Service, - Gateway - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ApiKindSerializer : global::StrawberryShake.Serialization.IInputValueFormatter, global::StrawberryShake.Serialization.ILeafValueParser - { - public global::System.String TypeName => "ApiKind"; - - public ApiKind Parse(global::System.String serializedValue) - { - return serializedValue switch - { - "COLLECTION" => ApiKind.Collection, - "SERVICE" => ApiKind.Service, - "GATEWAY" => ApiKind.Gateway, - _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum ApiKind")}; - } - - public global::System.Object Format(global::System.Object? runtimeValue) - { - return runtimeValue switch - { - ApiKind.Collection => "COLLECTION", - ApiKind.Service => "SERVICE", - ApiKind.Gateway => "GATEWAY", - _ => throw new global::StrawberryShake.GraphQLClientException($"Enum ApiKind value '{runtimeValue}' can't be converted to string")}; - } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public enum ProcessingState @@ -141442,53 +143451,69 @@ public DirectiveLocation Parse(global::System.String serializedValue) } } + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public enum ApiKind + { + Collection, + Service, + Gateway + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.EnumParserGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ApiKindSerializer : global::StrawberryShake.Serialization.IInputValueFormatter, global::StrawberryShake.Serialization.ILeafValueParser + { + public global::System.String TypeName => "ApiKind"; + + public ApiKind Parse(global::System.String serializedValue) + { + return serializedValue switch + { + "COLLECTION" => ApiKind.Collection, + "SERVICE" => ApiKind.Service, + "GATEWAY" => ApiKind.Gateway, + _ => throw new global::StrawberryShake.GraphQLClientException($"String value '{serializedValue}' can't be converted to enum ApiKind")}; + } + + public global::System.Object Format(global::System.Object? runtimeValue) + { + return runtimeValue switch + { + ApiKind.Collection => "COLLECTION", + ApiKind.Service => "SERVICE", + ApiKind.Gateway => "GATEWAY", + _ => throw new global::StrawberryShake.GraphQLClientException($"Enum ApiKind value '{runtimeValue}' can't be converted to string")}; + } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! /// ) { - /// createApiKey(input: $input) { + /// uploadFusionSubgraph(input: $input) { /// __typename - /// result { + /// fusionSubgraphVersion { /// __typename - /// key { - /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey - /// } - /// secret + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError + /// ... UnauthorizedOperation + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... InvalidFusionSourceSchemaArchiveError /// ... Error /// } /// } /// } /// - /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { - /// id - /// ... ApiKeyDetailPrompt_ApiKey - /// } - /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -141496,48 +143521,34 @@ public DirectiveLocation Parse(global::System.String serializedValue) /// message /// } /// - /// fragment WorkspaceNotFound on WorkspaceNotFound { - /// __typename - /// message - /// workspaceId - /// ... Error - /// } - /// - /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { + /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message /// ... Error /// } /// - /// fragment ValidationError on ValidationError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// errors { - /// __typename - /// message - /// } /// ... Error /// } /// - /// fragment RoleNotFoundError on RoleNotFoundError { - /// __typename + /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { /// message - /// roleId - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class UploadFusionSubgraphMutationDocument : global::StrawberryShake.IDocument { - private CreateApiKeyCommandMutationMutationDocument() + private UploadFusionSubgraphMutationDocument() { } - public static CreateApiKeyCommandMutationMutationDocument Instance { get; } = new CreateApiKeyCommandMutationMutationDocument(); + public static UploadFusionSubgraphMutationDocument Instance { get; } = new UploadFusionSubgraphMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "992b8ab9fd5e45569fda61f616659e1a"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6ad8835f646dd18170a8670d303ed8ae"); public override global::System.String ToString() { @@ -141551,51 +143562,31 @@ private CreateApiKeyCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! /// ) { - /// createApiKey(input: $input) { + /// uploadFusionSubgraph(input: $input) { /// __typename - /// result { + /// fusionSubgraphVersion { /// __typename - /// key { - /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey - /// } - /// secret + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError + /// ... UnauthorizedOperation + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... InvalidFusionSourceSchemaArchiveError /// ... Error /// } /// } /// } /// - /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { - /// id - /// ... ApiKeyDetailPrompt_ApiKey - /// } - /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -141603,74 +143594,60 @@ private CreateApiKeyCommandMutationMutationDocument() /// message /// } /// - /// fragment WorkspaceNotFound on WorkspaceNotFound { - /// __typename - /// message - /// workspaceId - /// ... Error - /// } - /// - /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { + /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message /// ... Error /// } /// - /// fragment ValidationError on ValidationError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// errors { - /// __typename - /// message - /// } /// ... Error /// } /// - /// fragment RoleNotFoundError on RoleNotFoundError { - /// __typename + /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { /// message - /// roleId - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation + public partial class UploadFusionSubgraphMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createApiKeyInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFusionSubgraphInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UploadFusionSubgraphMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createApiKeyInputFormatter = serializerResolver.GetInputValueFormatter("CreateApiKeyInput"); + _uploadFusionSubgraphInputFormatter = serializerResolver.GetInputValueFormatter("UploadFusionSubgraphInput"); } - private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createApiKeyInputFormatter) + private UploadFusionSubgraphMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFusionSubgraphInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _createApiKeyInputFormatter = createApiKeyInputFormatter; + _uploadFusionSubgraphInputFormatter = uploadFusionSubgraphInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateApiKeyCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadFusionSubgraphResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createApiKeyInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphMutation(_operationExecutor, _configure.Add(configure), _uploadFusionSubgraphInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -141681,87 +143658,84 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromTypeUploadFusionSubgraphInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value, global::System.Collections.Generic.Dictionary files) + { + var pathArchive = path + ".archive"; + var valueArchive = value.Archive; + files.Add(pathArchive, valueArchive is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeUploadFusionSubgraphInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); - return CreateRequest(variables); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: CreateApiKeyCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiKeyCommandMutation", document: CreateApiKeyCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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.CommandLine.Client.CreateApiKeyInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createApiKeyInputFormatter.Format(value); + return _uploadFusionSubgraphInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the UploadFusionSubgraph GraphQL operation /// - /// mutation CreateApiKeyCommandMutation( - /// $input: CreateApiKeyInput! + /// mutation UploadFusionSubgraph( + /// $input: UploadFusionSubgraphInput! /// ) { - /// createApiKey(input: $input) { + /// uploadFusionSubgraph(input: $input) { /// __typename - /// result { + /// fusionSubgraphVersion { /// __typename - /// key { - /// __typename - /// ... CreateApiKeyCommandMutation_ApiKey - /// } - /// secret + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... WorkspaceNotFound - /// ... PersonalWorkspaceNotSupportedError - /// ... ValidationError - /// ... RoleNotFoundError + /// ... UnauthorizedOperation + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... InvalidFusionSourceSchemaArchiveError /// ... Error /// } /// } /// } /// - /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { - /// id - /// ... ApiKeyDetailPrompt_ApiKey - /// } - /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -141769,104 +143743,60 @@ private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx /// message /// } /// - /// fragment WorkspaceNotFound on WorkspaceNotFound { - /// __typename - /// message - /// workspaceId - /// ... Error - /// } - /// - /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { + /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message /// ... Error /// } /// - /// fragment ValidationError on ValidationError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// errors { - /// __typename - /// message - /// } /// ... Error /// } /// - /// fragment RoleNotFoundError on RoleNotFoundError { - /// __typename + /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { /// message - /// roleId - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiKeyCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! /// ) { - /// 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 { + /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename - /// name + /// downloadUrl + /// tag /// } /// } - /// - /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { - /// __typename - /// message - /// apiKeyId - /// } - /// - /// fragment Error on Error { - /// message - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class FetchConfigurationQueryDocument : global::StrawberryShake.IDocument { - private DeleteApiKeyCommandMutationMutationDocument() + private FetchConfigurationQueryDocument() { } - public static DeleteApiKeyCommandMutationMutationDocument Instance { get; } = new DeleteApiKeyCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static FetchConfigurationQueryDocument Instance { get; } = new FetchConfigurationQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d9c3122efc6baad1e0bfd610a4503566"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3097e85429305b83549a5845054a2148"); public override global::System.String ToString() { @@ -141880,89 +143810,62 @@ private DeleteApiKeyCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! /// ) { - /// 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 { + /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename - /// name + /// downloadUrl + /// tag /// } /// } - /// - /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { - /// __typename - /// message - /// apiKeyId - /// } - /// - /// fragment Error on Error { - /// message - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation + public partial class FetchConfigurationQuery : global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteApiKeyInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _deleteApiKeyInputFormatter = serializerResolver.GetInputValueFormatter("DeleteApiKeyInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteApiKeyInputFormatter) + private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _deleteApiKeyInputFormatter = deleteApiKeyInputFormatter; + _iDFormatter = iDFormatter; + _stringFormatter = @stringFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiKeyCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IFetchConfigurationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteApiKeyInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.FetchConfigurationQuery(_operationExecutor, _configure.Add(configure), _iDFormatter, _stringFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String stage, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(id, stage); foreach (var configure in _configure) { configure(request); @@ -141971,32 +143874,43 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String id, global::System.String stage, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(id, stage); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String id, global::System.String stage) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); + variables.Add("id", FormatId(id)); + variables.Add("stage", FormatStage(stage)); return CreateRequest(variables); } 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.PersistedOperation, variables: variables); + return new global::StrawberryShake.OperationRequest(id: FetchConfigurationQueryDocument.Instance.Hash.Value, name: "FetchConfiguration", document: FetchConfigurationQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput value) + private global::System.Object? FormatId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _deleteApiKeyInputFormatter.Format(value); + return _iDFormatter.Format(value); + } + + private global::System.Object? FormatStage(global::System.String value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _stringFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -142007,127 +143921,103 @@ private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationEx // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// Represents the operation service of the FetchConfiguration GraphQL operation /// - /// mutation DeleteApiKeyCommandMutation( - /// $input: DeleteApiKeyInput! + /// query FetchConfiguration( + /// $id: ID! + /// $stage: String! /// ) { - /// 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 { + /// fusionConfigurationByApiId(id: $id, stage: $stage) { /// __typename - /// name + /// downloadUrl + /// tag /// } /// } - /// - /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { - /// __typename - /// message - /// apiKeyId - /// } - /// - /// fragment Error on Error { - /// message - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiKeyCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IFetchConfigurationQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String stage, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String id, global::System.String stage, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation + /// Represents the operation service of the CreateMockSchema GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int + /// mutation CreateMockSchema( + /// $apiId: ID! + /// $baseSchemaFile: Upload! + /// $downstreamUrl: String! + /// $extensionsSchemaFile: Upload! + /// $name: String! /// ) { - /// workspaceById(workspaceId: $workspaceId) { + /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { /// __typename - /// apiKeys(after: $after, first: $first) { + /// mockSchema { /// __typename - /// edges { - /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// id + /// ... MockSchemaDetailPrompt + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { - /// cursor - /// node { + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// ... ListApiKeyCommand_ApiKey + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username /// } + /// downstreamUrl + /// url /// } /// - /// fragment ListApiKeyCommand_ApiKey on ApiKey { - /// id - /// name - /// ... ApiKeyDetailPrompt_ApiKey + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class CreateMockSchemaMutationDocument : global::StrawberryShake.IDocument { - private ListApiKeyCommandQueryQueryDocument() + private CreateMockSchemaMutationDocument() { } - public static ListApiKeyCommandQueryQueryDocument Instance { get; } = new ListApiKeyCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static CreateMockSchemaMutationDocument Instance { get; } = new CreateMockSchemaMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "73d47ef547275fb8b3364106fa956029"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "dc1c3bda5bde62cf3e0b9afcaf32824e"); public override global::System.String ToString() { @@ -142141,105 +144031,111 @@ private ListApiKeyCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation + /// Represents the operation service of the CreateMockSchema GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int - /// ) { - /// workspaceById(workspaceId: $workspaceId) { - /// __typename - /// apiKeys(after: $after, first: $first) { + /// 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 - /// edges { - /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// id + /// ... MockSchemaDetailPrompt + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { - /// cursor - /// node { + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// ... ListApiKeyCommand_ApiKey + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username /// } + /// downstreamUrl + /// url /// } /// - /// fragment ListApiKeyCommand_ApiKey on ApiKey { - /// id - /// name - /// ... ApiKeyDetailPrompt_ApiKey + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery + public partial class CreateMockSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private CreateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _stringFormatter = @stringFormatter; - _intFormatter = @intFormatter; _iDFormatter = iDFormatter; + _uploadFormatter = uploadFormatter; + _stringFormatter = @stringFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListApiKeyCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateMockSchemaResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListApiKeyCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchemaMutation(_operationExecutor, _configure.Add(configure), _iDFormatter, _uploadFormatter, _stringFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId, after, first); + var request = CreateRequest(apiId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); foreach (var configure in _configure) { configure(request); @@ -142248,27 +144144,42 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromArgumentBaseSchemaFile(global::System.String path, global::StrawberryShake.Upload value, global::System.Collections.Generic.Dictionary files) { - var request = CreateRequest(workspaceId, after, first); + files.Add(path, value is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path, global::StrawberryShake.Upload value, global::System.Collections.Generic.Dictionary files) + { + files.Add(path, value is global::StrawberryShake.Upload u ? u : null); + } + + public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(apiId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); - return CreateRequest(variables); + variables.Add("apiId", FormatApiId(apiId)); + variables.Add("baseSchemaFile", FormatBaseSchemaFile(baseSchemaFile)); + variables.Add("downstreamUrl", FormatDownstreamUrl(downstreamUrl)); + variables.Add("extensionsSchemaFile", FormatExtensionsSchemaFile(extensionsSchemaFile)); + variables.Add("name", FormatName(name)); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentBaseSchemaFile("variables.baseSchemaFile", baseSchemaFile, files); + MapFilesFromArgumentExtensionsSchemaFile("variables.extensionsSchemaFile", extensionsSchemaFile, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ListApiKeyCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiKeyCommandQuery", document: ListApiKeyCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatApiId(global::System.String value) { if (value is null) { @@ -142278,173 +144189,186 @@ private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation + /// Represents the operation service of the CreateMockSchema GraphQL operation /// - /// query ListApiKeyCommandQuery( - /// $workspaceId: ID! - /// $after: String - /// $first: Int + /// mutation CreateMockSchema( + /// $apiId: ID! + /// $baseSchemaFile: Upload! + /// $downstreamUrl: String! + /// $extensionsSchemaFile: Upload! + /// $name: String! /// ) { - /// workspaceById(workspaceId: $workspaceId) { + /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { /// __typename - /// apiKeys(after: $after, first: $first) { + /// mockSchema { /// __typename - /// edges { - /// __typename - /// ... ListApiKeyCommand_ApiKeyEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// id + /// ... MockSchemaDetailPrompt + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { - /// cursor - /// node { + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// ... ListApiKeyCommand_ApiKey + /// username /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username + /// } + /// downstreamUrl + /// url /// } /// - /// fragment ListApiKeyCommand_ApiKey on ApiKey { - /// id - /// name - /// ... ApiKeyDetailPrompt_ApiKey + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateApiCommandMutation GraphQL operation + /// Represents the operation service of the UpdateMockSchema GraphQL operation /// - /// mutation CreateApiCommandMutation( - /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// mutation UpdateMockSchema( + /// $mockSchemaId: ID! + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { + /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { /// __typename - /// changes { + /// mockSchema { /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateApiCommandMutation_Api - /// } + /// id + /// ... MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... Error + /// ... MockSchemaNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment CreateApiCommandMutation_Api on Api { - /// name - /// ... ApiDetailPrompt_Api - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name - /// path - /// workspace { + /// createdAt + /// createdBy { /// __typename - /// id - /// name + /// username /// } - /// settings { + /// modifiedAt + /// modifiedBy { /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class UpdateMockSchemaMutationDocument : global::StrawberryShake.IDocument { - private CreateApiCommandMutationMutationDocument() + private UpdateMockSchemaMutationDocument() { } - public static CreateApiCommandMutationMutationDocument Instance { get; } = new CreateApiCommandMutationMutationDocument(); + public static UpdateMockSchemaMutationDocument Instance { get; } = new UpdateMockSchemaMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "66d4f44040a316fb6a0c2d1ba29de363"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b111cbd352fbdf127d499cd8d4f84433"); public override global::System.String ToString() { @@ -142458,109 +144382,110 @@ private CreateApiCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateApiCommandMutation GraphQL operation + /// Represents the operation service of the UpdateMockSchema GraphQL operation /// - /// mutation CreateApiCommandMutation( - /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// mutation UpdateMockSchema( + /// $mockSchemaId: ID! + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { + /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { /// __typename - /// changes { + /// mockSchema { /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateApiCommandMutation_Api - /// } + /// id + /// ... MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... Error + /// ... MockSchemaNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment CreateApiCommandMutation_Api on Api { - /// name - /// ... ApiDetailPrompt_Api - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name - /// path - /// workspace { + /// createdAt + /// createdBy { /// __typename - /// id - /// name + /// username /// } - /// settings { + /// modifiedAt + /// modifiedBy { /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation + public partial class UpdateMockSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _apiKindFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _apiKindFormatter = serializerResolver.GetInputValueFormatter("ApiKind"); } - private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter apiKindFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _apiKindFormatter = apiKindFormatter; + _uploadFormatter = uploadFormatter; _stringFormatter = @stringFormatter; _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateApiCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUpdateMockSchemaResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutationMutation(_operationExecutor, _configure.Add(configure), _apiKindFormatter, _stringFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchemaMutation(_operationExecutor, _configure.Add(configure), _uploadFormatter, _stringFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId, path, name, kind); + var request = CreateRequest(mockSchemaId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); foreach (var configure in _configure) { configure(request); @@ -142569,28 +144494,42 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromArgumentBaseSchemaFile(global::System.String path, global::StrawberryShake.Upload? value, global::System.Collections.Generic.Dictionary files) { - var request = CreateRequest(workspaceId, path, name, kind); + files.Add(path, value is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path, global::StrawberryShake.Upload? value, global::System.Collections.Generic.Dictionary files) + { + files.Add(path, value is global::StrawberryShake.Upload u ? u : null); + } + + public global::System.IObservable> Watch(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(mockSchemaId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - variables.Add("path", FormatPath(path)); + variables.Add("mockSchemaId", FormatMockSchemaId(mockSchemaId)); + variables.Add("baseSchemaFile", FormatBaseSchemaFile(baseSchemaFile)); + variables.Add("downstreamUrl", FormatDownstreamUrl(downstreamUrl)); + variables.Add("extensionsSchemaFile", FormatExtensionsSchemaFile(extensionsSchemaFile)); variables.Add("name", FormatName(name)); - variables.Add("kind", FormatKind(kind)); - return CreateRequest(variables); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentBaseSchemaFile("variables.baseSchemaFile", baseSchemaFile, files); + MapFilesFromArgumentExtensionsSchemaFile("variables.extensionsSchemaFile", extensionsSchemaFile, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: CreateApiCommandMutationMutationDocument.Instance.Hash.Value, name: "CreateApiCommandMutation", document: CreateApiCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatMockSchemaId(global::System.String value) { if (value is null) { @@ -142600,38 +144539,43 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu return _iDFormatter.Format(value); } - private global::System.Object? FormatPath(global::System.Collections.Generic.IReadOnlyList value) + private global::System.Object? FormatBaseSchemaFile(global::StrawberryShake.Upload? value) { if (value is null) { - throw new global::System.ArgumentNullException(nameof(value)); + return value; } - - var value_list = new global::System.Collections.Generic.List(); - foreach (var value_elm in value) + else { - if (value_elm is null) - { - throw new global::System.ArgumentNullException(nameof(value_elm)); - } - - value_list.Add(_stringFormatter.Format(value_elm)); + return _uploadFormatter.Format(value); } - - return value_list; } - private global::System.Object? FormatName(global::System.String value) + private global::System.Object? FormatDownstreamUrl(global::System.String? value) { if (value is null) { - throw new global::System.ArgumentNullException(nameof(value)); + return value; + } + else + { + return _stringFormatter.Format(value); } + } - return _stringFormatter.Format(value); + private global::System.Object? FormatExtensionsSchemaFile(global::StrawberryShake.Upload? value) + { + if (value is null) + { + return value; + } + else + { + return _uploadFormatter.Format(value); + } } - private global::System.Object? FormatKind(global::ChilliCream.Nitro.CommandLine.Client.ApiKind? value) + private global::System.Object? FormatName(global::System.String? value) { if (value is null) { @@ -142639,120 +144583,162 @@ private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecu } else { - return _apiKindFormatter.Format(value); + return _stringFormatter.Format(value); } } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateApiCommandMutation GraphQL operation + /// Represents the operation service of the UpdateMockSchema GraphQL operation /// - /// mutation CreateApiCommandMutation( - /// $workspaceId: ID! - /// $path: [String!]! - /// $name: String! - /// $kind: ApiKind + /// mutation UpdateMockSchema( + /// $mockSchemaId: ID! + /// $baseSchemaFile: Upload + /// $downstreamUrl: String + /// $extensionsSchemaFile: Upload + /// $name: String /// ) { - /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { + /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { /// __typename - /// changes { + /// mockSchema { /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateApiCommandMutation_Api - /// } + /// id + /// ... MockSchemaDetailPrompt /// } /// errors { /// __typename - /// ... Error + /// ... MockSchemaNotFoundError + /// ... MockSchemaNonUniqueNameError /// } /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment CreateApiCommandMutation_Api on Api { - /// name - /// ... ApiDetailPrompt_Api - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name - /// path - /// workspace { + /// createdAt + /// createdBy { /// __typename - /// id - /// name + /// username /// } - /// settings { + /// modifiedAt + /// modifiedBy { /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// __typename + /// message + /// name + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation + /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( + /// query ListMockCommandQuery( /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $apiId) { + /// apiById(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// mockSchemas(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListMockCommand_MockEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// - /// fragment DeleteApiCommandQuery_Api on Api { + /// fragment ListMockCommand_MockEdge on MockSchemasEdge { + /// cursor + /// node { + /// __typename + /// ... ListMockCommand_Mock + /// } + /// } + /// + /// fragment ListMockCommand_Mock on MockSchema { + /// id /// name - /// version - /// workspace { + /// ... MockSchemaDetailPrompt + /// } + /// + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// id + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class ListMockCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private DeleteApiCommandQueryQueryDocument() + private ListMockCommandQueryQueryDocument() { } - public static DeleteApiCommandQueryQueryDocument Instance { get; } = new DeleteApiCommandQueryQueryDocument(); + public static ListMockCommandQueryQueryDocument Instance { get; } = new ListMockCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3b4f426d4f45f7b8d9472110f137e869"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1b7ebd5e95b4f31767e0271f30d34242"); public override global::System.String ToString() { @@ -142766,66 +144752,113 @@ private DeleteApiCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation + /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( + /// query ListMockCommandQuery( /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $apiId) { + /// apiById(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// mockSchemas(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListMockCommand_MockEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// - /// fragment DeleteApiCommandQuery_Api on Api { + /// fragment ListMockCommand_MockEdge on MockSchemasEdge { + /// cursor + /// node { + /// __typename + /// ... ListMockCommand_Mock + /// } + /// } + /// + /// fragment ListMockCommand_Mock on MockSchema { + /// id /// name - /// version - /// workspace { + /// ... MockSchemaDetailPrompt + /// } + /// + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// id + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery + public partial class ListMockCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; + _stringFormatter = @stringFormatter; _iDFormatter = iDFormatter; + _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListMockCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListMockCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId); + var request = CreateRequest(apiId, after, first); foreach (var configure in _configure) { configure(request); @@ -142834,22 +144867,24 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(apiId); + var request = CreateRequest(apiId, after, first); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("apiId", FormatApiId(apiId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); return CreateRequest(variables); } private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: DeleteApiCommandQueryQueryDocument.Instance.Hash.Value, name: "DeleteApiCommandQuery", document: DeleteApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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) @@ -142862,6 +144897,30 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { return CreateRequest(variables!); @@ -142870,93 +144929,142 @@ private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation + /// Represents the operation service of the ListMockCommandQuery GraphQL operation /// - /// query DeleteApiCommandQuery( + /// query ListMockCommandQuery( /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $apiId) { + /// apiById(id: $apiId) { /// __typename - /// ... DeleteApiCommandQuery_Api + /// mockSchemas(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListMockCommand_MockEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// - /// fragment DeleteApiCommandQuery_Api on Api { + /// fragment ListMockCommand_MockEdge on MockSchemasEdge { + /// cursor + /// node { + /// __typename + /// ... ListMockCommand_Mock + /// } + /// } + /// + /// fragment ListMockCommand_Mock on MockSchema { + /// id /// name - /// version - /// workspace { + /// ... MockSchemaDetailPrompt + /// } + /// + /// fragment MockSchemaDetailPrompt on MockSchema { + /// id + /// name + /// createdAt + /// createdBy { /// __typename - /// id + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username /// } + /// downstreamUrl + /// url + /// } + /// + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation + /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! + /// query ShowClientCommandQuery( + /// $clientId: ID! /// ) { - /// deleteApiById(input: { apiId: $apiId }) { + /// node(id: $clientId) { /// __typename - /// api { - /// __typename - /// name - /// ... ApiDetailPrompt_Api - /// } - /// errors { - /// __typename - /// ... Error - /// } + /// ... ClientDetailPrompt_Client /// } /// } /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment ClientDetailPrompt_Client on Client { /// id /// name - /// path - /// workspace { + /// api { /// __typename - /// id /// name + /// path /// } - /// settings { + /// versions { /// __typename - /// schemaRegistry { + /// edges { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor /// } /// } /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class ShowClientCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private DeleteApiCommandMutationMutationDocument() + private ShowClientCommandQueryQueryDocument() { } - public static DeleteApiCommandMutationMutationDocument Instance { get; } = new DeleteApiCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static ShowClientCommandQueryQueryDocument Instance { get; } = new ShowClientCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "dff3ece7aa10daff0067410c52faf6d7"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "202e2ae2330c6b4feffd8347e5769aba"); public override global::System.String ToString() { @@ -142970,88 +145078,96 @@ private DeleteApiCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation + /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! + /// query ShowClientCommandQuery( + /// $clientId: ID! /// ) { - /// deleteApiById(input: { apiId: $apiId }) { + /// node(id: $clientId) { /// __typename - /// api { - /// __typename - /// name - /// ... ApiDetailPrompt_Api - /// } - /// errors { - /// __typename - /// ... Error - /// } + /// ... ClientDetailPrompt_Client /// } /// } /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment ClientDetailPrompt_Client on Client { /// id /// name - /// path - /// workspace { + /// api { /// __typename - /// id /// name + /// path /// } - /// settings { + /// versions { /// __typename - /// schemaRegistry { + /// edges { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor /// } /// } /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation + public partial class ShowClientCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowClientCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutationMutation(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String clientId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId); + var request = CreateRequest(clientId); foreach (var configure in _configure) { configure(request); @@ -143060,25 +145176,25 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String clientId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(apiId); + var request = CreateRequest(clientId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String clientId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); + variables.Add("clientId", FormatClientId(clientId)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatApiId(global::System.String value) + private global::System.Object? FormatClientId(global::System.String value) { if (value is null) { @@ -143096,137 +145212,144 @@ private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecu // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation + /// Represents the operation service of the ShowClientCommandQuery GraphQL operation /// - /// mutation DeleteApiCommandMutation( - /// $apiId: ID! + /// query ShowClientCommandQuery( + /// $clientId: ID! /// ) { - /// deleteApiById(input: { apiId: $apiId }) { + /// node(id: $clientId) { /// __typename - /// api { - /// __typename - /// name - /// ... ApiDetailPrompt_Api - /// } - /// errors { - /// __typename - /// ... Error - /// } + /// ... ClientDetailPrompt_Client /// } /// } /// - /// fragment ApiDetailPrompt_Api on Api { + /// fragment ClientDetailPrompt_Client on Client { /// id /// name - /// path - /// workspace { + /// api { /// __typename - /// id /// name + /// path /// } - /// settings { + /// versions { /// __typename - /// schemaRegistry { + /// edges { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor /// } /// } /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IShowClientCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String clientId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String clientId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListApiCommandQuery GraphQL operation + /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! /// ) { - /// workspaceById(workspaceId: $workspaceId) { + /// unpublishClient(input: $input) { /// __typename - /// apis(after: $after, first: $first) { + /// clientVersion { /// __typename - /// edges { - /// __typename - /// ... ListApiCommand_ApiEdge - /// } - /// pageInfo { + /// id + /// client { /// __typename - /// ... PageInfo + /// name /// } /// } + /// errors { + /// __typename + /// ... ConcurrentOperationError + /// ... StageNotFoundError + /// ... ClientVersionNotFoundError + /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment ListApiCommand_ApiEdge on ApisEdge { - /// cursor - /// node { - /// __typename - /// ... ListApiCommand_Api - /// } + /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListApiCommand_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// ... Error /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { + /// tag + /// message + /// clientId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class UnpublishClientMutationDocument : global::StrawberryShake.IDocument { - private ListApiCommandQueryQueryDocument() + private UnpublishClientMutationDocument() { } - public static ListApiCommandQueryQueryDocument Instance { get; } = new ListApiCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static UnpublishClientMutationDocument Instance { get; } = new UnpublishClientMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4457adbf3d9f1a7ca591ced02a6e97c0"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c6d62ca62c529e9795322ced95b5c1a8"); public override global::System.String ToString() { @@ -143240,116 +145363,109 @@ private ListApiCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListApiCommandQuery GraphQL operation + /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! /// ) { - /// workspaceById(workspaceId: $workspaceId) { + /// unpublishClient(input: $input) { /// __typename - /// apis(after: $after, first: $first) { + /// clientVersion { /// __typename - /// edges { - /// __typename - /// ... ListApiCommand_ApiEdge - /// } - /// pageInfo { + /// id + /// client { /// __typename - /// ... PageInfo + /// name /// } /// } + /// errors { + /// __typename + /// ... ConcurrentOperationError + /// ... StageNotFoundError + /// ... ClientVersionNotFoundError + /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment ListApiCommand_ApiEdge on ApisEdge { - /// cursor - /// node { - /// __typename - /// ... ListApiCommand_Api - /// } + /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListApiCommand_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// ... Error /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { + /// tag + /// message + /// clientId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery + public partial class UnpublishClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _versionFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _unpublishClientInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _versionFormatter = serializerResolver.GetInputValueFormatter("Version"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + _unpublishClientInputFormatter = serializerResolver.GetInputValueFormatter("UnpublishClientInput"); } - private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter unpublishClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _versionFormatter = versionFormatter; - _intFormatter = @intFormatter; - _iDFormatter = iDFormatter; + _unpublishClientInputFormatter = unpublishClientInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListApiCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUnpublishClientResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientMutation(_operationExecutor, _configure.Add(configure), _unpublishClientInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId, after, first); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -143358,58 +145474,32 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(workspaceId, after, first); + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); + variables.Add("input", FormatInput(input)); return CreateRequest(variables); } private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ListApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ListApiCommandQuery", document: ListApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatAfter(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _versionFormatter.Format(value); - } - } - - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } + return _unpublishClientInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -143420,147 +145510,127 @@ private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the ListApiCommandQuery GraphQL operation + /// Represents the operation service of the UnpublishClient GraphQL operation /// - /// query ListApiCommandQuery( - /// $workspaceId: ID! - /// $after: Version - /// $first: Int + /// mutation UnpublishClient( + /// $input: UnpublishClientInput! /// ) { - /// workspaceById(workspaceId: $workspaceId) { + /// unpublishClient(input: $input) { /// __typename - /// apis(after: $after, first: $first) { + /// clientVersion { /// __typename - /// edges { - /// __typename - /// ... ListApiCommand_ApiEdge - /// } - /// pageInfo { + /// id + /// client { /// __typename - /// ... PageInfo + /// name /// } /// } + /// errors { + /// __typename + /// ... ConcurrentOperationError + /// ... StageNotFoundError + /// ... ClientVersionNotFoundError + /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment ListApiCommand_ApiEdge on ApisEdge { - /// cursor - /// node { - /// __typename - /// ... ListApiCommand_Api - /// } + /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListApiCommand_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// ... Error /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { + /// tag + /// message + /// clientId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IUnpublishClientMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation + /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! + /// mutation UploadClient( + /// $input: UploadClientInput! /// ) { - /// updateApiSettings(input: $input) { + /// uploadClient(input: $input) { /// __typename - /// api { + /// clientVersion { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError /// ... Error /// } /// } /// } /// - /// fragment SetApiSettingsCommandMutation_Api on Api { - /// name - /// path - /// ... SelectApiPrompt_Api - /// } - /// - /// fragment SelectApiPrompt_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename + /// fragment ClientNotFoundError on ClientNotFoundError { /// message - /// apiId + /// clientId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename /// message + /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -143568,16 +145638,16 @@ public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOp /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class UploadClientMutationDocument : global::StrawberryShake.IDocument { - private SetApiSettingsCommandMutationMutationDocument() + private UploadClientMutationDocument() { } - public static SetApiSettingsCommandMutationMutationDocument Instance { get; } = new SetApiSettingsCommandMutationMutationDocument(); + public static UploadClientMutationDocument Instance { get; } = new UploadClientMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1764f051057ef08b61a865c8e104c057"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "07c3c01d9752c92ac4dfe838c5ae069d"); public override global::System.String ToString() { @@ -143591,70 +145661,51 @@ private SetApiSettingsCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation + /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! + /// mutation UploadClient( + /// $input: UploadClientInput! /// ) { - /// updateApiSettings(input: $input) { + /// uploadClient(input: $input) { /// __typename - /// api { + /// clientVersion { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError /// ... Error /// } /// } /// } /// - /// fragment SetApiSettingsCommandMutation_Api on Api { - /// name - /// path - /// ... SelectApiPrompt_Api - /// } - /// - /// fragment SelectApiPrompt_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename + /// fragment ClientNotFoundError on ClientNotFoundError { /// message - /// apiId + /// clientId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename /// message + /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -143662,42 +145713,42 @@ private SetApiSettingsCommandMutationMutationDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation + public partial class UploadClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateApiSettingsInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadClientInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _updateApiSettingsInputFormatter = serializerResolver.GetInputValueFormatter("UpdateApiSettingsInput"); + _uploadClientInputFormatter = serializerResolver.GetInputValueFormatter("UploadClientInput"); } - private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateApiSettingsInputFormatter) + private UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _updateApiSettingsInputFormatter = updateApiSettingsInputFormatter; + _uploadClientInputFormatter = uploadClientInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISetApiSettingsCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadClientResult); - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutationMutation(_operationExecutor, _configure.Add(configure), _updateApiSettingsInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UploadClientMutation(_operationExecutor, _configure.Add(configure), _uploadClientInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -143708,106 +145759,104 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromTypeUploadClientInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput value, global::System.Collections.Generic.Dictionary files) + { + var pathOperations = path + ".operations"; + var valueOperations = value.Operations; + files.Add(pathOperations, valueOperations is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeUploadClientInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); - return CreateRequest(variables); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: SetApiSettingsCommandMutationMutationDocument.Instance.Hash.Value, name: "SetApiSettingsCommandMutation", document: SetApiSettingsCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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.CommandLine.Client.UpdateApiSettingsInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _updateApiSettingsInputFormatter.Format(value); + return _uploadClientInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation + /// Represents the operation service of the UploadClient GraphQL operation /// - /// mutation SetApiSettingsCommandMutation( - /// $input: UpdateApiSettingsInput! + /// mutation UploadClient( + /// $input: UploadClientInput! /// ) { - /// updateApiSettings(input: $input) { + /// uploadClient(input: $input) { /// __typename - /// api { + /// clientVersion { /// __typename - /// ... SetApiSettingsCommandMutation_Api + /// id /// } /// errors { /// __typename - /// ... ApiNotFoundError /// ... UnauthorizedOperation + /// ... ClientNotFoundError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError /// ... Error /// } /// } /// } /// - /// fragment SetApiSettingsCommandMutation_Api on Api { - /// name - /// path - /// ... SelectApiPrompt_Api - /// } - /// - /// fragment SelectApiPrompt_Api on Api { - /// id - /// name - /// path - /// ... ApiDetailPrompt_Api + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { - /// __typename - /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { - /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges - /// } - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename + /// fragment ClientNotFoundError on ClientNotFoundError { /// message - /// apiId + /// clientId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename /// message + /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -143815,59 +145864,70 @@ private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperation /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetApiSettingsCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IUploadClientMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ShowApiCommandQuery GraphQL operation + /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// query ShowApiCommandQuery( - /// $workspaceId: ID! + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... ApiDetailPrompt_Api - /// } - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { + /// validateClient(input: $input) { /// __typename /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { + /// errors { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ClientNotFoundError + /// ... Error /// } /// } /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class ValidateClientVersionMutationDocument : global::StrawberryShake.IDocument { - private ShowApiCommandQueryQueryDocument() + private ValidateClientVersionMutationDocument() { } - public static ShowApiCommandQueryQueryDocument Instance { get; } = new ShowApiCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static ValidateClientVersionMutationDocument Instance { get; } = new ValidateClientVersionMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "0941232cf9cd2c8d7f601407e9d64dbf"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fc0b2ca98ba95caa6eadb2f1b725006f"); public override global::System.String ToString() { @@ -143881,76 +145941,87 @@ private ShowApiCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ShowApiCommandQuery GraphQL operation + /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// query ShowApiCommandQuery( - /// $workspaceId: ID! + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... ApiDetailPrompt_Api - /// } - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { + /// validateClient(input: $input) { /// __typename /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { + /// errors { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ClientNotFoundError + /// ... Error /// } /// } /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery + public partial class ValidateClientVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateClientInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _validateClientInputFormatter = serializerResolver.GetInputValueFormatter("ValidateClientInput"); } - private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _iDFormatter = iDFormatter; + _validateClientInputFormatter = validateClientInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowApiCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateClientVersionResult); - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersionMutation(_operationExecutor, _configure.Add(configure), _validateClientInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -143959,179 +146030,197 @@ private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromTypeValidateClientInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value, global::System.Collections.Generic.Dictionary files) { - var request = CreateRequest(workspaceId); + var pathOperations = path + ".operations"; + var valueOperations = value.Operations; + files.Add(pathOperations, valueOperations is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeValidateClientInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - return CreateRequest(variables); + variables.Add("input", FormatInput(input)); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ShowApiCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowApiCommandQuery", document: ShowApiCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _iDFormatter.Format(value); + return _validateClientInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ShowApiCommandQuery GraphQL operation + /// Represents the operation service of the ValidateClientVersion GraphQL operation /// - /// query ShowApiCommandQuery( - /// $workspaceId: ID! + /// mutation ValidateClientVersion( + /// $input: ValidateClientInput! /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... ApiDetailPrompt_Api - /// } - /// } - /// - /// fragment ApiDetailPrompt_Api on Api { - /// id - /// name - /// path - /// workspace { + /// validateClient(input: $input) { /// __typename /// id - /// name - /// } - /// settings { - /// __typename - /// schemaRegistry { + /// errors { /// __typename - /// treatDangerousAsBreaking - /// allowBreakingSchemaChanges + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ClientNotFoundError + /// ... Error /// } /// } /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment ClientNotFoundError on ClientNotFoundError { + /// message + /// clientId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IValidateClientVersionMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateClientCommandMutation GraphQL operation + /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! /// ) { - /// createClient(input: $input) { + /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// client { - /// __typename - /// ... CreateClientCommandMutation_Client - /// } - /// errors { - /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// } + /// ... ClientVersionValidationFailed + /// ... ClientVersionValidationSuccess + /// ... OperationInProgress + /// ... ValidationInProgress /// } /// } /// - /// fragment CreateClientCommandMutation_Client on Client { - /// name - /// id - /// ... ClientDetailPrompt_Client - /// } - /// - /// fragment ClientDetailPrompt_Client on Client { - /// id - /// name - /// api { - /// __typename - /// name - /// path - /// } - /// versions { + /// fragment ClientVersionValidationFailed on ClientVersionValidationFailed { + /// state + /// errors { /// __typename - /// edges { - /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge - /// } - /// pageInfo { - /// __typename - /// hasNextPage - /// endCursor - /// } + /// ... PersistedQueryValidationError + /// ... ProcessingTimeoutError + /// ... UnexpectedProcessingError /// } /// } /// - /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { - /// cursor - /// node { + /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// message + /// client { /// __typename /// id - /// createdAt - /// tag - /// publishedTo { + /// name + /// } + /// queries { + /// __typename + /// deployedTags + /// message + /// hash + /// errors { /// __typename - /// stage { + /// message + /// code + /// path + /// locations { /// __typename - /// name + /// column + /// line /// } /// } /// } /// } /// - /// fragment Error on Error { + /// fragment ProcessingTimeoutError on ProcessingTimeoutError { + /// __typename /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { /// __typename /// message - /// apiId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { + /// state /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationMutationDocument : global::StrawberryShake.IDocument - { - private CreateClientCommandMutationMutationDocument() + /// + /// fragment OperationInProgress on OperationInProgress { + /// state + /// } + /// + /// fragment ValidationInProgress on ValidationInProgress { + /// state + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnClientVersionValidationUpdatedSubscriptionDocument : global::StrawberryShake.IDocument + { + private OnClientVersionValidationUpdatedSubscriptionDocument() { } - public static CreateClientCommandMutationMutationDocument Instance { get; } = new CreateClientCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static OnClientVersionValidationUpdatedSubscriptionDocument Instance { get; } = new OnClientVersionValidationUpdatedSubscriptionDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1781486920ef931abe7278a40b70d4cb"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7bba9b8a24c252e56c3a8f077ab6c62f"); public override global::System.String ToString() { @@ -144145,162 +146234,118 @@ private CreateClientCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateClientCommandMutation GraphQL operation + /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! /// ) { - /// createClient(input: $input) { + /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// client { - /// __typename - /// ... CreateClientCommandMutation_Client - /// } - /// errors { - /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// } + /// ... ClientVersionValidationFailed + /// ... ClientVersionValidationSuccess + /// ... OperationInProgress + /// ... ValidationInProgress /// } /// } /// - /// fragment CreateClientCommandMutation_Client on Client { - /// name - /// id - /// ... ClientDetailPrompt_Client - /// } - /// - /// fragment ClientDetailPrompt_Client on Client { - /// id - /// name - /// api { - /// __typename - /// name - /// path - /// } - /// versions { + /// fragment ClientVersionValidationFailed on ClientVersionValidationFailed { + /// state + /// errors { /// __typename - /// edges { - /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge - /// } - /// pageInfo { - /// __typename - /// hasNextPage - /// endCursor - /// } + /// ... PersistedQueryValidationError + /// ... ProcessingTimeoutError + /// ... UnexpectedProcessingError /// } /// } /// - /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { - /// cursor - /// node { + /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// message + /// client { /// __typename /// id - /// createdAt - /// tag - /// publishedTo { + /// name + /// } + /// queries { + /// __typename + /// deployedTags + /// message + /// hash + /// errors { /// __typename - /// stage { + /// message + /// code + /// path + /// locations { /// __typename - /// name + /// column + /// line /// } /// } /// } /// } /// - /// fragment Error on Error { + /// fragment ProcessingTimeoutError on ProcessingTimeoutError { + /// __typename /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { /// __typename /// message - /// apiId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { + /// state + /// } + /// + /// fragment OperationInProgress on OperationInProgress { + /// state + /// } + /// + /// fragment ValidationInProgress on ValidationInProgress { + /// state /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation + public partial class OnClientVersionValidationUpdatedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createClientInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createClientInputFormatter = serializerResolver.GetInputValueFormatter("CreateClientInput"); - } - - private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createClientInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _createClientInputFormatter = createClientInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateClientCommandMutationResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createClientInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IOnClientVersionValidationUpdatedResult); - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(requestId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String requestId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); + variables.Add("requestId", FormatRequestId(requestId)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput value) + private global::System.Object? FormatRequestId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createClientInputFormatter.Format(value); + return _iDFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -144311,97 +146356,83 @@ private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationEx // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateClientCommandMutation GraphQL operation + /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation /// - /// mutation CreateClientCommandMutation( - /// $input: CreateClientInput! + /// subscription OnClientVersionValidationUpdated( + /// $requestId: ID! /// ) { - /// createClient(input: $input) { + /// onClientVersionValidationUpdate(requestId: $requestId) { /// __typename - /// client { - /// __typename - /// ... CreateClientCommandMutation_Client - /// } - /// errors { - /// __typename - /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation - /// } + /// ... ClientVersionValidationFailed + /// ... ClientVersionValidationSuccess + /// ... OperationInProgress + /// ... ValidationInProgress /// } /// } /// - /// fragment CreateClientCommandMutation_Client on Client { - /// name - /// id - /// ... ClientDetailPrompt_Client - /// } - /// - /// fragment ClientDetailPrompt_Client on Client { - /// id - /// name - /// api { - /// __typename - /// name - /// path - /// } - /// versions { + /// fragment ClientVersionValidationFailed on ClientVersionValidationFailed { + /// state + /// errors { /// __typename - /// edges { - /// __typename - /// ... ClientDetailPrompt_ClientVersionEdge - /// } - /// pageInfo { - /// __typename - /// hasNextPage - /// endCursor - /// } + /// ... PersistedQueryValidationError + /// ... ProcessingTimeoutError + /// ... UnexpectedProcessingError /// } /// } /// - /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { - /// cursor - /// node { + /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// message + /// client { /// __typename /// id - /// createdAt - /// tag - /// publishedTo { + /// name + /// } + /// queries { + /// __typename + /// deployedTags + /// message + /// hash + /// errors { /// __typename - /// stage { + /// message + /// code + /// path + /// locations { /// __typename - /// name + /// column + /// line /// } /// } /// } /// } /// - /// fragment Error on Error { + /// fragment ProcessingTimeoutError on ProcessingTimeoutError { + /// __typename /// message /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { /// __typename /// message - /// apiId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { + /// state + /// } + /// + /// fragment OperationInProgress on OperationInProgress { + /// state + /// } + /// + /// fragment ValidationInProgress on ValidationInProgress { + /// state /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateClientCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IOnClientVersionValidationUpdatedSubscription : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator @@ -144769,391 +146800,6 @@ public partial interface IDeleteClientByIdCommandMutationMutation : global::Stra global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the ListClientCommandQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryQueryDocument : global::StrawberryShake.IDocument - { - private ListClientCommandQueryQueryDocument() - { - } - - public static ListClientCommandQueryQueryDocument Instance { get; } = new ListClientCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a2a2d861eabc2d4a6f484b396c3e3c8e"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the ListClientCommandQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); - } - - private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; - _intFormatter = @intFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListClientCommandQueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(apiId, after, first); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(apiId, after, first); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); - return CreateRequest(variables); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatAfter(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _stringFormatter.Format(value); - } - } - - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the ListClientCommandQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListClientCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the PublishClientVersion GraphQL operation @@ -147189,14 +148835,34 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ShowClientCommandQuery GraphQL operation + /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $clientId) { + /// node(id: $apiId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ... on Api { + /// clients(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// cursor + /// node { + /// __typename + /// id + /// name + /// ... ClientDetailPrompt_Client + /// } + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } + /// } /// } /// } /// @@ -147238,19 +148904,26 @@ public partial interface IOnClientVersionPublishUpdatedSubscription : global::St /// } /// } /// } + /// + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class ListClientCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private ShowClientCommandQueryQueryDocument() + private ListClientCommandQueryQueryDocument() { } - public static ShowClientCommandQueryQueryDocument Instance { get; } = new ShowClientCommandQueryQueryDocument(); + public static ListClientCommandQueryQueryDocument Instance { get; } = new ListClientCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "202e2ae2330c6b4feffd8347e5769aba"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a2a2d861eabc2d4a6f484b396c3e3c8e"); public override global::System.String ToString() { @@ -147264,14 +148937,34 @@ private ShowClientCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ShowClientCommandQuery GraphQL operation + /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $clientId) { + /// node(id: $apiId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ... on Api { + /// clients(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// cursor + /// node { + /// __typename + /// id + /// name + /// ... ClientDetailPrompt_Client + /// } + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } + /// } /// } /// } /// @@ -147313,47 +149006,60 @@ private ShowClientCommandQueryQueryDocument() /// } /// } /// } + /// + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery + public partial class ListClientCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ListClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; + _stringFormatter = @stringFormatter; _iDFormatter = iDFormatter; + _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowClientCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListClientCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String clientId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(clientId); + var request = CreateRequest(apiId, after, first); foreach (var configure in _configure) { configure(request); @@ -147362,25 +149068,27 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String clientId, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(clientId); + var request = CreateRequest(apiId, after, first); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String clientId) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("clientId", FormatClientId(clientId)); + variables.Add("apiId", FormatApiId(apiId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); return CreateRequest(variables); } private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: ShowClientCommandQueryQueryDocument.Instance.Hash.Value, name: "ShowClientCommandQuery", document: ShowClientCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatClientId(global::System.String value) + private global::System.Object? FormatApiId(global::System.String value) { if (value is null) { @@ -147390,6 +149098,30 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor? variables) { return CreateRequest(variables!); @@ -147398,14 +149130,34 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the ShowClientCommandQuery GraphQL operation + /// Represents the operation service of the ListClientCommandQuery GraphQL operation /// - /// query ShowClientCommandQuery( - /// $clientId: ID! + /// query ListClientCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// node(id: $clientId) { + /// node(id: $apiId) { /// __typename - /// ... ClientDetailPrompt_Client + /// ... on Api { + /// clients(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// cursor + /// node { + /// __typename + /// id + /// name + /// ... ClientDetailPrompt_Client + /// } + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } + /// } /// } /// } /// @@ -147447,95 +149199,121 @@ private ShowClientCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowClientCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IListClientCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String clientId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String clientId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the UnpublishClient GraphQL operation + /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! /// ) { - /// unpublishClient(input: $input) { + /// createClient(input: $input) { /// __typename - /// clientVersion { + /// client { /// __typename - /// id - /// client { - /// __typename - /// name - /// } + /// ... CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... StageNotFoundError - /// ... ClientVersionNotFoundError - /// ... UnauthorizedOperation - /// ... ClientNotFoundError /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment CreateClientCommandMutation_Client on Client { + /// name + /// id + /// ... ClientDetailPrompt_Client /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_Client on Client { + /// id + /// name + /// api { + /// __typename + /// name + /// path + /// } + /// versions { + /// __typename + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// } /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message - /// name - /// ... Error + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// - /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { - /// tag + /// fragment Error on Error { /// message - /// clientId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment ClientNotFoundError on ClientNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// clientId /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientMutationDocument : global::StrawberryShake.IDocument + public partial class CreateClientCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private UnpublishClientMutationDocument() + private CreateClientCommandMutationMutationDocument() { } - public static UnpublishClientMutationDocument Instance { get; } = new UnpublishClientMutationDocument(); + public static CreateClientCommandMutationMutationDocument Instance { get; } = new CreateClientCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c6d62ca62c529e9795322ced95b5c1a8"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1781486920ef931abe7278a40b70d4cb"); public override global::System.String ToString() { @@ -147549,107 +149327,126 @@ private UnpublishClientMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the UnpublishClient GraphQL operation + /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! /// ) { - /// unpublishClient(input: $input) { + /// createClient(input: $input) { /// __typename - /// clientVersion { + /// client { /// __typename - /// id - /// client { - /// __typename - /// name - /// } + /// ... CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... StageNotFoundError - /// ... ClientVersionNotFoundError - /// ... UnauthorizedOperation - /// ... ClientNotFoundError /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment CreateClientCommandMutation_Client on Client { + /// name + /// id + /// ... ClientDetailPrompt_Client /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_Client on Client { + /// id + /// name + /// api { + /// __typename + /// name + /// path + /// } + /// versions { + /// __typename + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// } /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message - /// name - /// ... Error + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// - /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { - /// tag + /// fragment Error on Error { /// message - /// clientId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment ClientNotFoundError on ClientNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// clientId /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation + public partial class CreateClientCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _unpublishClientInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createClientInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _unpublishClientInputFormatter = serializerResolver.GetInputValueFormatter("UnpublishClientInput"); + _createClientInputFormatter = serializerResolver.GetInputValueFormatter("CreateClientInput"); } - private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter unpublishClientInputFormatter) + private CreateClientCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createClientInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _unpublishClientInputFormatter = unpublishClientInputFormatter; + _createClientInputFormatter = createClientInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUnpublishClientResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateClientCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientMutation(_operationExecutor, _configure.Add(configure), _unpublishClientInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createClientInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -147660,13 +149457,13 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor> Watch(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -147675,17 +149472,17 @@ 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.PersistedOperation, 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.CommandLine.Client.UnpublishClientInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _unpublishClientInputFormatter.Format(value); + return _createClientInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -147696,144 +149493,143 @@ private UnpublishClientMutation(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the UnpublishClient GraphQL operation + /// Represents the operation service of the CreateClientCommandMutation GraphQL operation /// - /// mutation UnpublishClient( - /// $input: UnpublishClientInput! + /// mutation CreateClientCommandMutation( + /// $input: CreateClientInput! /// ) { - /// unpublishClient(input: $input) { + /// createClient(input: $input) { /// __typename - /// clientVersion { + /// client { /// __typename - /// id - /// client { - /// __typename - /// name - /// } + /// ... CreateClientCommandMutation_Client /// } /// errors { /// __typename - /// ... ConcurrentOperationError - /// ... StageNotFoundError - /// ... ClientVersionNotFoundError - /// ... UnauthorizedOperation - /// ... ClientNotFoundError /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment CreateClientCommandMutation_Client on Client { + /// name + /// id + /// ... ClientDetailPrompt_Client /// } /// - /// fragment Error on Error { - /// message + /// fragment ClientDetailPrompt_Client on Client { + /// id + /// name + /// api { + /// __typename + /// name + /// path + /// } + /// versions { + /// __typename + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// } /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message - /// name - /// ... Error + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { + /// cursor + /// node { + /// __typename + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } + /// } /// } /// - /// fragment ClientVersionNotFoundError on ClientVersionNotFoundError { - /// tag + /// fragment Error on Error { /// message - /// clientId - /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment ClientNotFoundError on ClientNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// clientId /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUnpublishClientMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateClientCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UnpublishClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the UploadClient GraphQL operation + /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! + /// query ShowApiCommandQuery( + /// $workspaceId: ID! /// ) { - /// uploadClient(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// clientVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } + /// ... ApiDetailPrompt_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error - /// } - /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment ApiDetailPrompt_Api on Api { + /// id + /// name + /// path + /// workspace { + /// __typename + /// id + /// name + /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientMutationDocument : global::StrawberryShake.IDocument + public partial class ShowApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private UploadClientMutationDocument() + private ShowApiCommandQueryQueryDocument() { } - public static UploadClientMutationDocument Instance { get; } = new UploadClientMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static ShowApiCommandQueryQueryDocument Instance { get; } = new ShowApiCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "07c3c01d9752c92ac4dfe838c5ae069d"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "0941232cf9cd2c8d7f601407e9d64dbf"); public override global::System.String ToString() { @@ -147847,96 +149643,76 @@ private UploadClientMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the UploadClient GraphQL operation + /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! + /// query ShowApiCommandQuery( + /// $workspaceId: ID! /// ) { - /// uploadClient(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// clientVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } + /// ... ApiDetailPrompt_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error - /// } - /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment ApiDetailPrompt_Api on Api { + /// id + /// name + /// path + /// workspace { + /// __typename + /// id + /// name + /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation + public partial class ShowApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadClientInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _uploadClientInputFormatter = serializerResolver.GetInputValueFormatter("UploadClientInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private UploadClientMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadClientInputFormatter) + private ShowApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _uploadClientInputFormatter = uploadClientInputFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadClientResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowApiCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.UploadClientMutation(_operationExecutor, _configure.Add(configure), _uploadClientInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId); foreach (var configure in _configure) { configure(request); @@ -147945,175 +149721,117 @@ private UploadClientMutation(global::StrawberryShake.IOperationExecutor files) - { - var pathOperations = path + ".operations"; - var valueOperations = value.Operations; - files.Add(pathOperations, valueOperations is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput value, global::System.Collections.Generic.Dictionary files) - { - if (value is { } value_i) - { - MapFilesFromTypeUploadClientInput(path, value_i, files); - } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + return CreateRequest(variables); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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); + 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput value) + private global::System.Object? FormatWorkspaceId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _uploadClientInputFormatter.Format(value); + return _iDFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the UploadClient GraphQL operation + /// Represents the operation service of the ShowApiCommandQuery GraphQL operation /// - /// mutation UploadClient( - /// $input: UploadClientInput! + /// query ShowApiCommandQuery( + /// $workspaceId: ID! /// ) { - /// uploadClient(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// clientVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... ClientNotFoundError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } + /// ... ApiDetailPrompt_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error - /// } - /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment ApiDetailPrompt_Api on Api { + /// id + /// name + /// path + /// workspace { + /// __typename + /// id + /// name + /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadClientMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IShowApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ValidateClientVersion GraphQL operation + /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! + /// query DeleteApiCommandQuery( + /// $apiId: ID! /// ) { - /// validateClient(input: $input) { + /// node(id: $apiId) { /// __typename - /// id - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error - /// } + /// ... DeleteApiCommandQuery_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment DeleteApiCommandQuery_Api on Api { /// name - /// ... Error - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error + /// version + /// workspace { + /// __typename + /// id + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionMutationDocument : global::StrawberryShake.IDocument + public partial class DeleteApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private ValidateClientVersionMutationDocument() + private DeleteApiCommandQueryQueryDocument() { } - public static ValidateClientVersionMutationDocument Instance { get; } = new ValidateClientVersionMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static DeleteApiCommandQueryQueryDocument Instance { get; } = new DeleteApiCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fc0b2ca98ba95caa6eadb2f1b725006f"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3b4f426d4f45f7b8d9472110f137e869"); public override global::System.String ToString() { @@ -148127,87 +149845,66 @@ private ValidateClientVersionMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ValidateClientVersion GraphQL operation + /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! + /// query DeleteApiCommandQuery( + /// $apiId: ID! /// ) { - /// validateClient(input: $input) { + /// node(id: $apiId) { /// __typename - /// id - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error - /// } + /// ... DeleteApiCommandQuery_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment DeleteApiCommandQuery_Api on Api { /// name - /// ... Error - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error + /// version + /// workspace { + /// __typename + /// id + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation + public partial class DeleteApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateClientInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _validateClientInputFormatter = serializerResolver.GetInputValueFormatter("ValidateClientInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateClientInputFormatter) + private DeleteApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _validateClientInputFormatter = validateClientInputFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateClientVersionResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersionMutation(_operationExecutor, _configure.Add(configure), _validateClientInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(apiId); foreach (var configure in _configure) { configure(request); @@ -148216,197 +149913,129 @@ private ValidateClientVersionMutation(global::StrawberryShake.IOperationExecutor return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - private void MapFilesFromTypeValidateClientInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value, global::System.Collections.Generic.Dictionary files) - { - var pathOperations = path + ".operations"; - var valueOperations = value.Operations; - files.Add(pathOperations, valueOperations is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value, global::System.Collections.Generic.Dictionary files) - { - if (value is { } value_i) - { - MapFilesFromTypeValidateClientInput(path, value_i, files); - } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(apiId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); + variables.Add("apiId", FormatApiId(apiId)); + return CreateRequest(variables); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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); + 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput value) + private global::System.Object? FormatApiId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _validateClientInputFormatter.Format(value); + return _iDFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ValidateClientVersion GraphQL operation + /// Represents the operation service of the DeleteApiCommandQuery GraphQL operation /// - /// mutation ValidateClientVersion( - /// $input: ValidateClientInput! + /// query DeleteApiCommandQuery( + /// $apiId: ID! /// ) { - /// validateClient(input: $input) { + /// node(id: $apiId) { /// __typename - /// id - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ClientNotFoundError - /// ... Error - /// } + /// ... DeleteApiCommandQuery_Api /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment DeleteApiCommandQuery_Api on Api { /// name - /// ... Error - /// } - /// - /// fragment ClientNotFoundError on ClientNotFoundError { - /// message - /// clientId - /// ... Error + /// version + /// workspace { + /// __typename + /// id + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateClientVersionMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IDeleteApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateClientInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation + /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// subscription OnClientVersionValidationUpdated( - /// $requestId: ID! + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! /// ) { - /// onClientVersionValidationUpdate(requestId: $requestId) { + /// deleteApiById(input: { apiId: $apiId }) { /// __typename - /// ... ClientVersionValidationFailed - /// ... ClientVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress + /// api { + /// __typename + /// name + /// ... ApiDetailPrompt_Api + /// } + /// errors { + /// __typename + /// ... Error + /// } /// } /// } /// - /// fragment ClientVersionValidationFailed on ClientVersionValidationFailed { - /// state - /// errors { - /// __typename - /// ... PersistedQueryValidationError - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// } - /// } - /// - /// fragment PersistedQueryValidationError on PersistedQueryValidationError { - /// message - /// client { + /// fragment ApiDetailPrompt_Api on Api { + /// id + /// name + /// path + /// workspace { /// __typename /// id /// name /// } - /// queries { + /// settings { /// __typename - /// deployedTags - /// message - /// hash - /// errors { + /// schemaRegistry { /// __typename - /// message - /// code - /// path - /// locations { - /// __typename - /// column - /// line - /// } + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges /// } /// } /// } /// - /// fragment ProcessingTimeoutError on ProcessingTimeoutError { - /// __typename - /// message - /// } - /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { - /// __typename + /// fragment Error on Error { /// message /// } - /// - /// fragment ClientVersionValidationSuccess on ClientVersionValidationSuccess { - /// state - /// } - /// - /// fragment OperationInProgress on OperationInProgress { - /// state - /// } - /// - /// fragment ValidationInProgress on ValidationInProgress { - /// state - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedSubscriptionDocument : global::StrawberryShake.IDocument + public partial class DeleteApiCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private OnClientVersionValidationUpdatedSubscriptionDocument() + private DeleteApiCommandMutationMutationDocument() { } - public static OnClientVersionValidationUpdatedSubscriptionDocument Instance { get; } = new OnClientVersionValidationUpdatedSubscriptionDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; + public static DeleteApiCommandMutationMutationDocument Instance { get; } = new DeleteApiCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7bba9b8a24c252e56c3a8f077ab6c62f"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "dff3ece7aa10daff0067410c52faf6d7"); public override global::System.String ToString() { @@ -148420,228 +150049,17 @@ private OnClientVersionValidationUpdatedSubscriptionDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedSubscription : global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - public OnClientVersionValidationUpdatedSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IOnClientVersionValidationUpdatedResult); - - public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(requestId); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String requestId) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("requestId", FormatRequestId(requestId)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatRequestId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the OnClientVersionValidationUpdated GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionValidationUpdatedSubscription : global::StrawberryShake.IOperationRequestFactory - { - global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation + /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation( - /// $workspaceId: ID! - /// $name: String! + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! /// ) { - /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { + /// deleteApiById(input: { apiId: $apiId }) { /// __typename - /// changes { + /// api { /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateEnvironmentCommandMutation_Environment - /// } + /// name + /// ... ApiDetailPrompt_Api /// } /// errors { /// __typename @@ -148650,72 +150068,21 @@ public partial interface IOnClientVersionValidationUpdatedSubscription : global: /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment CreateEnvironmentCommandMutation_Environment on Environment { - /// name - /// ... EnvironmentDetailPrompt_Environment - /// } - /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// fragment ApiDetailPrompt_Api on Api { /// id /// name + /// path /// workspace { /// __typename + /// id /// name /// } - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationMutationDocument : global::StrawberryShake.IDocument - { - private CreateEnvironmentCommandMutationMutationDocument() - { - } - - public static CreateEnvironmentCommandMutationMutationDocument Instance { get; } = new CreateEnvironmentCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b9c18dd6d50ba180b90f48a77b096216"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// 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 } } } ] }) { + /// settings { /// __typename - /// changes { - /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateEnvironmentCommandMutation_Environment - /// } - /// } - /// errors { + /// schemaRegistry { /// __typename - /// ... Error + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges /// } /// } /// } @@ -148723,64 +150090,47 @@ private CreateEnvironmentCommandMutationMutationDocument() /// fragment Error on Error { /// message /// } - /// - /// fragment CreateEnvironmentCommandMutation_Environment on Environment { - /// name - /// ... EnvironmentDetailPrompt_Environment - /// } - /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { - /// id - /// name - /// workspace { - /// __typename - /// name - /// } - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation + public partial class DeleteApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private DeleteApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _stringFormatter = @stringFormatter; _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateEnvironmentCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutationMutation(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutationMutation(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId, name); + var request = CreateRequest(apiId); foreach (var configure in _configure) { configure(request); @@ -148789,26 +150139,25 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(workspaceId, name); + var request = CreateRequest(apiId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String name) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - variables.Add("name", FormatName(name)); + variables.Add("apiId", FormatApiId(apiId)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatApiId(global::System.String value) { if (value is null) { @@ -148818,16 +150167,6 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat return _iDFormatter.Format(value); } - private global::System.Object? FormatName(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _stringFormatter.Format(value); - } - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { return CreateRequest(variables!); @@ -148836,25 +150175,17 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation + /// Represents the operation service of the DeleteApiCommandMutation GraphQL operation /// - /// mutation CreateEnvironmentCommandMutation( - /// $workspaceId: ID! - /// $name: String! + /// mutation DeleteApiCommandMutation( + /// $apiId: ID! /// ) { - /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { + /// deleteApiById(input: { apiId: $apiId }) { /// __typename - /// changes { + /// api { /// __typename - /// referenceId - /// error { - /// __typename - /// ... Error - /// } - /// result { - /// __typename - /// ... CreateEnvironmentCommandMutation_Environment - /// } + /// name + /// ... ApiDetailPrompt_Api /// } /// errors { /// __typename @@ -148863,51 +150194,56 @@ private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperat /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment CreateEnvironmentCommandMutation_Environment on Environment { - /// name - /// ... EnvironmentDetailPrompt_Environment - /// } - /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// fragment ApiDetailPrompt_Api on Api { /// id /// name + /// path /// workspace { /// __typename + /// id /// name /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } + /// } + /// + /// fragment Error on Error { + /// message /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateEnvironmentCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IDeleteApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery( + /// query ListApiCommandQuery( /// $workspaceId: ID! /// $after: Version /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// environments(after: $after, first: $first) { + /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ... ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename @@ -148917,27 +150253,38 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str /// } /// } /// - /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { + /// fragment ListApiCommand_ApiEdge on ApisEdge { /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ... ListApiCommand_Api /// } /// } /// - /// fragment ListEnvironmentCommand_Environment on Environment { + /// fragment ListApiCommand_Api on Api { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// path + /// ... ApiDetailPrompt_Api /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// fragment ApiDetailPrompt_Api on Api { /// id /// name + /// path /// workspace { /// __typename + /// id /// name /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -148949,16 +150296,16 @@ public partial interface ICreateEnvironmentCommandMutationMutation : global::Str /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class ListApiCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private ListEnvironmentCommandQueryQueryDocument() + private ListApiCommandQueryQueryDocument() { } - public static ListEnvironmentCommandQueryQueryDocument Instance { get; } = new ListEnvironmentCommandQueryQueryDocument(); + public static ListApiCommandQueryQueryDocument Instance { get; } = new ListApiCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5d5c59c7c2e869cd8e37ec6a854f6d61"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "4457adbf3d9f1a7ca591ced02a6e97c0"); public override global::System.String ToString() { @@ -148972,20 +150319,20 @@ private ListEnvironmentCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery( + /// query ListApiCommandQuery( /// $workspaceId: ID! /// $after: Version /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// environments(after: $after, first: $first) { + /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ... ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename @@ -148995,27 +150342,38 @@ private ListEnvironmentCommandQueryQueryDocument() /// } /// } /// - /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { + /// fragment ListApiCommand_ApiEdge on ApisEdge { /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ... ListApiCommand_Api /// } /// } /// - /// fragment ListEnvironmentCommand_Environment on Environment { + /// fragment ListApiCommand_Api on Api { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// path + /// ... ApiDetailPrompt_Api /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// fragment ApiDetailPrompt_Api on Api { /// id /// name + /// path /// workspace { /// __typename + /// id /// name /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -149027,14 +150385,14 @@ private ListEnvironmentCommandQueryQueryDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery + public partial class ListApiCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _versionFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); @@ -149042,7 +150400,7 @@ public ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecut _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private ListApiCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -149051,24 +150409,24 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListEnvironmentCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListApiCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListEnvironmentCommandQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListApiCommandQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(workspaceId, after, first); foreach (var configure in _configure) @@ -149079,7 +150437,7 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(workspaceId, after, first); return _operationExecutor.Watch(request, strategy); @@ -149096,7 +150454,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.PersistedOperation, 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) @@ -149141,20 +150499,20 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the ListApiCommandQuery GraphQL operation /// - /// query ListEnvironmentCommandQuery( + /// query ListApiCommandQuery( /// $workspaceId: ID! /// $after: Version /// $first: Int /// ) { /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// environments(after: $after, first: $first) { + /// apis(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListEnvironmentCommand_EnvironmentEdge + /// ... ListApiCommand_ApiEdge /// } /// pageInfo { /// __typename @@ -149164,27 +150522,38 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// } /// } /// - /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { + /// fragment ListApiCommand_ApiEdge on ApisEdge { /// cursor /// node { /// __typename - /// ... ListEnvironmentCommand_Environment + /// ... ListApiCommand_Api /// } /// } /// - /// fragment ListEnvironmentCommand_Environment on Environment { + /// fragment ListApiCommand_Api on Api { /// id /// name - /// ... EnvironmentDetailPrompt_Environment + /// path + /// ... ApiDetailPrompt_Api /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// fragment ApiDetailPrompt_Api on Api { /// id /// name + /// path /// workspace { /// __typename + /// id /// name /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -149196,49 +150565,98 @@ private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IListApiCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! /// ) { - /// node(id: $workspaceId) { + /// updateApiSettings(input: $input) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// api { + /// __typename + /// ... SetApiSettingsCommandMutation_Api + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... UnauthorizedOperation + /// ... Error + /// } /// } /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class SetApiSettingsCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private ShowEnvironmentCommandQueryQueryDocument() + private SetApiSettingsCommandMutationMutationDocument() { } - public static ShowEnvironmentCommandQueryQueryDocument Instance { get; } = new ShowEnvironmentCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static SetApiSettingsCommandMutationMutationDocument Instance { get; } = new SetApiSettingsCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "35993498c755e51178ea417965c3a164"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1764f051057ef08b61a865c8e104c057"); public override global::System.String ToString() { @@ -149252,66 +150670,115 @@ private ShowEnvironmentCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! /// ) { - /// node(id: $workspaceId) { + /// updateApiSettings(input: $input) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// api { + /// __typename + /// ... SetApiSettingsCommandMutation_Api + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... UnauthorizedOperation + /// ... Error + /// } /// } /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery + public partial class SetApiSettingsCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateApiSettingsInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _updateApiSettingsInputFormatter = serializerResolver.GetInputValueFormatter("UpdateApiSettingsInput"); } - private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private SetApiSettingsCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateApiSettingsInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _iDFormatter = iDFormatter; + _updateApiSettingsInputFormatter = updateApiSettingsInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowEnvironmentCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISetApiSettingsCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutationMutation(_operationExecutor, _configure.Add(configure), _updateApiSettingsInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(workspaceId); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -149320,32 +150787,32 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(workspaceId); + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + variables.Add("input", FormatInput(input)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatWorkspaceId(global::System.String value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _iDFormatter.Format(value); + return _updateApiSettingsInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -149356,64 +150823,157 @@ private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecu // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation + /// Represents the operation service of the SetApiSettingsCommandMutation GraphQL operation /// - /// query ShowEnvironmentCommandQuery( - /// $workspaceId: ID! + /// mutation SetApiSettingsCommandMutation( + /// $input: UpdateApiSettingsInput! /// ) { - /// node(id: $workspaceId) { + /// updateApiSettings(input: $input) { /// __typename - /// ... EnvironmentDetailPrompt_Environment + /// api { + /// __typename + /// ... SetApiSettingsCommandMutation_Api + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... UnauthorizedOperation + /// ... Error + /// } /// } /// } /// - /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface ISetApiSettingsCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateApiSettingsInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the FetchConfiguration GraphQL operation + /// Represents the operation service of the CreateApiCommandMutation GraphQL operation /// - /// query FetchConfiguration( - /// $id: ID! - /// $stage: String! + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// fusionConfigurationByApiId(id: $id, stage: $stage) { + /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename - /// downloadUrl - /// tag + /// 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 + /// } /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationQueryDocument : global::StrawberryShake.IDocument + public partial class CreateApiCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private FetchConfigurationQueryDocument() + private CreateApiCommandMutationMutationDocument() { } - public static FetchConfigurationQueryDocument Instance { get; } = new FetchConfigurationQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static CreateApiCommandMutationMutationDocument Instance { get; } = new CreateApiCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3097e85429305b83549a5845054a2148"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "66d4f44040a316fb6a0c2d1ba29de363"); public override global::System.String ToString() { @@ -149427,62 +150987,109 @@ private FetchConfigurationQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the FetchConfiguration GraphQL operation + /// Represents the operation service of the CreateApiCommandMutation GraphQL operation /// - /// query FetchConfiguration( - /// $id: ID! - /// $stage: String! + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// fusionConfigurationByApiId(id: $id, stage: $stage) { + /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename - /// downloadUrl - /// tag + /// 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 + /// } /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationQuery : global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery + public partial class CreateApiCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _apiKindFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _apiKindFormatter = serializerResolver.GetInputValueFormatter("ApiKind"); } - private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) + private CreateApiCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter apiKindFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _iDFormatter = iDFormatter; + _apiKindFormatter = apiKindFormatter; _stringFormatter = @stringFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IFetchConfigurationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateApiCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.FetchConfigurationQuery(_operationExecutor, _configure.Add(configure), _iDFormatter, _stringFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutationMutation(_operationExecutor, _configure.Add(configure), _apiKindFormatter, _stringFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String stage, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(id, stage); + var request = CreateRequest(workspaceId, path, name, kind); foreach (var configure in _configure) { configure(request); @@ -149491,26 +151098,28 @@ private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String id, global::System.String stage, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(id, stage); + var request = CreateRequest(workspaceId, path, name, kind); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String id, global::System.String stage) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("id", FormatId(id)); - variables.Add("stage", FormatStage(stage)); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + variables.Add("path", FormatPath(path)); + variables.Add("name", FormatName(name)); + variables.Add("kind", FormatKind(kind)); return CreateRequest(variables); } private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return new global::StrawberryShake.OperationRequest(id: FetchConfigurationQueryDocument.Instance.Hash.Value, name: "FetchConfiguration", document: FetchConfigurationQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatId(global::System.String value) + private global::System.Object? FormatWorkspaceId(global::System.String value) { if (value is null) { @@ -149520,366 +151129,173 @@ private FetchConfigurationQuery(global::StrawberryShake.IOperationExecutor value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _stringFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the FetchConfiguration GraphQL operation - /// - /// query FetchConfiguration( - /// $id: ID! - /// $stage: String! - /// ) { - /// fusionConfigurationByApiId(id: $id, stage: $stage) { - /// __typename - /// downloadUrl - /// tag - /// } - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IFetchConfigurationQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String stage, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String id, global::System.String stage, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the UploadFusionSubgraph GraphQL operation - /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! - /// ) { - /// uploadFusionSubgraph(input: $input) { - /// __typename - /// fusionSubgraphVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { - /// message - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphMutationDocument : global::StrawberryShake.IDocument - { - private UploadFusionSubgraphMutationDocument() - { - } - - public static UploadFusionSubgraphMutationDocument Instance { get; } = new UploadFusionSubgraphMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "6ad8835f646dd18170a8670d303ed8ae"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the UploadFusionSubgraph GraphQL operation - /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! - /// ) { - /// uploadFusionSubgraph(input: $input) { - /// __typename - /// fusionSubgraphVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { - /// message - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFusionSubgraphInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UploadFusionSubgraphMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _uploadFusionSubgraphInputFormatter = serializerResolver.GetInputValueFormatter("UploadFusionSubgraphInput"); - } - - private UploadFusionSubgraphMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFusionSubgraphInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _uploadFusionSubgraphInputFormatter = uploadFusionSubgraphInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadFusionSubgraphResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphMutation(_operationExecutor, _configure.Add(configure), _uploadFusionSubgraphInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) + var value_list = new global::System.Collections.Generic.List(); + foreach (var value_elm in value) { - configure(request); - } + if (value_elm is null) + { + throw new global::System.ArgumentNullException(nameof(value_elm)); + } - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } + value_list.Add(_stringFormatter.Format(value_elm)); + } - private void MapFilesFromTypeUploadFusionSubgraphInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value, global::System.Collections.Generic.Dictionary files) - { - var pathArchive = path + ".archive"; - var valueArchive = value.Archive; - files.Add(pathArchive, valueArchive is global::StrawberryShake.Upload u ? u : null); + return value_list; } - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value, global::System.Collections.Generic.Dictionary files) + private global::System.Object? FormatName(global::System.String value) { - if (value is { } value_i) + if (value is null) { - MapFilesFromTypeUploadFusionSubgraphInput(path, value_i, files); + throw new global::System.ArgumentNullException(nameof(value)); } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); - } - 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.PersistedOperation, files: files, variables: variables); + return _stringFormatter.Format(value); } - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput value) + private global::System.Object? FormatKind(global::ChilliCream.Nitro.CommandLine.Client.ApiKind? value) { if (value is null) { - throw new global::System.ArgumentNullException(nameof(value)); + return value; + } + else + { + return _apiKindFormatter.Format(value); } - - return _uploadFusionSubgraphInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the UploadFusionSubgraph GraphQL operation + /// Represents the operation service of the CreateApiCommandMutation GraphQL operation /// - /// mutation UploadFusionSubgraph( - /// $input: UploadFusionSubgraphInput! + /// mutation CreateApiCommandMutation( + /// $workspaceId: ID! + /// $path: [String!]! + /// $name: String! + /// $kind: ApiKind /// ) { - /// uploadFusionSubgraph(input: $input) { + /// pushWorkspaceChanges(input: { changes: [ { api: { create: { name: $name, path: $path, referenceId: "api", workspaceId: $workspaceId, kind: $kind } } } ] }) { /// __typename - /// fusionSubgraphVersion { + /// changes { /// __typename - /// id + /// referenceId + /// error { + /// __typename + /// ... Error + /// } + /// result { + /// __typename + /// ... CreateApiCommandMutation_Api + /// } /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... InvalidFusionSourceSchemaArchiveError /// ... Error /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// /// fragment Error on Error { /// message /// } /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment CreateApiCommandMutation_Api on Api { + /// name + /// ... ApiDetailPrompt_Api /// } /// - /// fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { - /// message + /// fragment ApiDetailPrompt_Api on Api { + /// id + /// name + /// path + /// workspace { + /// __typename + /// id + /// name + /// } + /// settings { + /// __typename + /// schemaRegistry { + /// __typename + /// treatDangerousAsBreaking + /// allowBreakingSchemaChanges + /// } + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateApiCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraphInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.Collections.Generic.IReadOnlyList path, global::System.String name, global::ChilliCream.Nitro.CommandLine.Client.ApiKind? kind, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation( - /// $input: CreateMcpFeatureCollectionInput! + /// mutation UpdateStages( + /// $input: UpdateStagesInput! /// ) { - /// createMcpFeatureCollection(input: $input) { + /// updateStages(input: $input) { /// __typename - /// mcpFeatureCollection { + /// api { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// stages { + /// __typename + /// ... StageDetailPrompt_Stage + /// } /// } /// errors { /// __typename - /// ... Error /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... StagesHavePublishedDependenciesError + /// ... on Error { + /// message + /// __typename + /// } /// } /// } /// } /// - /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name + /// fragment StageDetailPrompt_Stage on Stage { /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { - /// id - /// name + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment Error on Error { - /// message + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { @@ -149889,24 +151305,59 @@ public partial interface IUploadFusionSubgraphMutation : global::StrawberryShake /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// 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 + /// } + /// } + /// } + /// } + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class UpdateStagesMutationDocument : global::StrawberryShake.IDocument { - private CreateMcpFeatureCollectionCommandMutationMutationDocument() + private UpdateStagesMutationDocument() { } - public static CreateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new CreateMcpFeatureCollectionCommandMutationMutationDocument(); + public static UpdateStagesMutationDocument Instance { get; } = new UpdateStagesMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ba70847f71df37bf6b676e2c4ef91570"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a50cce1fa951fcdc164e78c6f8726374"); public override global::System.String ToString() { @@ -149920,39 +151371,52 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation( - /// $input: CreateMcpFeatureCollectionInput! + /// mutation UpdateStages( + /// $input: UpdateStagesInput! /// ) { - /// createMcpFeatureCollection(input: $input) { + /// updateStages(input: $input) { /// __typename - /// mcpFeatureCollection { + /// api { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// stages { + /// __typename + /// ... StageDetailPrompt_Stage + /// } /// } /// errors { /// __typename - /// ... Error /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... StagesHavePublishedDependenciesError + /// ... on Error { + /// message + /// __typename + /// } /// } /// } /// } /// - /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name + /// fragment StageDetailPrompt_Stage on Stage { /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { - /// id - /// name + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment Error on Error { - /// message + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { @@ -149962,50 +151426,85 @@ private CreateMcpFeatureCollectionCommandMutationMutationDocument() /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// 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 + /// } + /// } + /// } + /// } + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation + public partial class UpdateStagesMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createMcpFeatureCollectionInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateStagesInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("CreateMcpFeatureCollectionInput"); + _updateStagesInputFormatter = serializerResolver.GetInputValueFormatter("UpdateStagesInput"); } - private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createMcpFeatureCollectionInputFormatter) + private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateStagesInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _createMcpFeatureCollectionInputFormatter = createMcpFeatureCollectionInputFormatter; + _updateStagesInputFormatter = updateStagesInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUpdateStagesResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createMcpFeatureCollectionInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesMutation(_operationExecutor, _configure.Add(configure), _updateStagesInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -150016,13 +151515,13 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -150031,17 +151530,17 @@ 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.PersistedOperation, 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.CommandLine.Client.CreateMcpFeatureCollectionInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createMcpFeatureCollectionInputFormatter.Format(value); + return _updateStagesInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -150052,39 +151551,52 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the UpdateStages GraphQL operation /// - /// mutation CreateMcpFeatureCollectionCommandMutation( - /// $input: CreateMcpFeatureCollectionInput! + /// mutation UpdateStages( + /// $input: UpdateStagesInput! /// ) { - /// createMcpFeatureCollection(input: $input) { + /// updateStages(input: $input) { /// __typename - /// mcpFeatureCollection { + /// api { /// __typename - /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// stages { + /// __typename + /// ... StageDetailPrompt_Stage + /// } /// } /// errors { /// __typename - /// ... Error /// ... ApiNotFoundError - /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... StagesHavePublishedDependenciesError + /// ... on Error { + /// message + /// __typename + /// } /// } /// } /// } /// - /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name + /// fragment StageDetailPrompt_Stage on Stage { /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { - /// id - /// name + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment Error on Error { - /// message + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { @@ -150094,83 +151606,112 @@ private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// 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 + /// } + /// } + /// } + /// } + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( - /// $input: DeleteMcpFeatureCollectionByIdInput! + /// query ListStagesQuery( + /// $apiId: ID! /// ) { - /// deleteMcpFeatureCollectionById(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollection { - /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection - /// } - /// errors { - /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ... on Api { + /// stages { + /// __typename + /// id + /// name + /// displayName + /// ... StageDetailPrompt_Stage + /// } /// } /// } /// } /// - /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name - /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection - /// } - /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment StageDetailPrompt_Stage on Stage { /// id /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class ListStagesQueryQueryDocument : global::StrawberryShake.IDocument { - private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() + private ListStagesQueryQueryDocument() { } - public static DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static ListStagesQueryQueryDocument Instance { get; } = new ListStagesQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a87294003c8142e3996f1398a866c64f"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ff9fd00b5a96ac47f6aa413a425337d9"); public override global::System.String ToString() { @@ -150184,92 +151725,86 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( - /// $input: DeleteMcpFeatureCollectionByIdInput! + /// query ListStagesQuery( + /// $apiId: ID! /// ) { - /// deleteMcpFeatureCollectionById(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollection { - /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection - /// } - /// errors { - /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ... on Api { + /// stages { + /// __typename + /// id + /// name + /// displayName + /// ... StageDetailPrompt_Stage + /// } /// } /// } /// } /// - /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name - /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection - /// } - /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment StageDetailPrompt_Stage on Stage { /// id /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation + public partial class ListStagesQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteMcpFeatureCollectionByIdInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _deleteMcpFeatureCollectionByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteMcpFeatureCollectionByIdInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteMcpFeatureCollectionByIdInputFormatter) + private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _deleteMcpFeatureCollectionByIdInputFormatter = deleteMcpFeatureCollectionByIdInputFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteMcpFeatureCollectionByIdCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListStagesQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteMcpFeatureCollectionByIdInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(apiId); foreach (var configure in _configure) { configure(request); @@ -150278,32 +151813,32 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(apiId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); + variables.Add("apiId", FormatApiId(apiId)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput value) + private global::System.Object? FormatApiId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _deleteMcpFeatureCollectionByIdInputFormatter.Format(value); + return _iDFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -150314,107 +151849,103 @@ private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::Strawberry // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the ListStagesQuery GraphQL operation /// - /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( - /// $input: DeleteMcpFeatureCollectionByIdInput! + /// query ListStagesQuery( + /// $apiId: ID! /// ) { - /// deleteMcpFeatureCollectionById(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollection { - /// __typename - /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection - /// } - /// errors { - /// __typename - /// ... Error - /// ... McpFeatureCollectionNotFoundError - /// ... UnauthorizedOperation + /// ... on Api { + /// stages { + /// __typename + /// id + /// name + /// displayName + /// ... StageDetailPrompt_Stage + /// } /// } /// } /// } /// - /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { - /// name - /// id - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection - /// } - /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment StageDetailPrompt_Stage on Stage { /// id /// name + /// displayName + /// conditions { + /// __typename + /// ... StageCondition + /// } /// } /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment StageCondition on StageCondition { + /// ... AfterStageCondition /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error + /// fragment AfterStageCondition on AfterStageCondition { + /// afterStage { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation + /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery( - /// $apiId: ID! - /// $after: String + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version /// $first: Int /// ) { - /// node(id: $apiId) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// ... on Api { - /// mcpFeatureCollections(first: $first, after: $after) { + /// environments(after: $after, first: $first) { + /// __typename + /// edges { /// __typename - /// edges { - /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... ListEnvironmentCommand_EnvironmentEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo /// } /// } /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ... ListEnvironmentCommand_Environment /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment EnvironmentDetailPrompt_Environment on Environment { /// id /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -150426,16 +151957,16 @@ public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class ListEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private ListMcpFeatureCollectionCommandQueryQueryDocument() + private ListEnvironmentCommandQueryQueryDocument() { } - public static ListMcpFeatureCollectionCommandQueryQueryDocument Instance { get; } = new ListMcpFeatureCollectionCommandQueryQueryDocument(); + public static ListEnvironmentCommandQueryQueryDocument Instance { get; } = new ListEnvironmentCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7fed272d6aaed647d16d156856db0eed"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5d5c59c7c2e869cd8e37ec6a854f6d61"); public override global::System.String ToString() { @@ -150449,48 +151980,50 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation + /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery( - /// $apiId: ID! - /// $after: String + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version /// $first: Int /// ) { - /// node(id: $apiId) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// ... on Api { - /// mcpFeatureCollections(first: $first, after: $after) { + /// environments(after: $after, first: $first) { + /// __typename + /// edges { /// __typename - /// edges { - /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... ListEnvironmentCommand_EnvironmentEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo /// } /// } /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ... ListEnvironmentCommand_Environment /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment EnvironmentDetailPrompt_Environment on Environment { /// id /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -150502,50 +152035,50 @@ private ListMcpFeatureCollectionCommandQueryQueryDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery + public partial class ListEnvironmentCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _versionFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _versionFormatter = serializerResolver.GetInputValueFormatter("Version"); _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private ListEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; + _versionFormatter = versionFormatter; _intFormatter = @intFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListMcpFeatureCollectionCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListEnvironmentCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListEnvironmentCommandQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(workspaceId, after, first); foreach (var configure in _configure) { configure(request); @@ -150554,16 +152087,16 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(workspaceId, after, first); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); variables.Add("after", FormatAfter(after)); variables.Add("first", FormatFirst(first)); return CreateRequest(variables); @@ -150571,10 +152104,10 @@ 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.PersistedOperation, 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? FormatApiId(global::System.String value) + private global::System.Object? FormatWorkspaceId(global::System.String value) { if (value is null) { @@ -150592,7 +152125,7 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera } else { - return _stringFormatter.Format(value); + return _versionFormatter.Format(value); } } @@ -150616,48 +152149,50 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation + /// Represents the operation service of the ListEnvironmentCommandQuery GraphQL operation /// - /// query ListMcpFeatureCollectionCommandQuery( - /// $apiId: ID! - /// $after: String + /// query ListEnvironmentCommandQuery( + /// $workspaceId: ID! + /// $after: Version /// $first: Int /// ) { - /// node(id: $apiId) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// ... on Api { - /// mcpFeatureCollections(first: $first, after: $after) { + /// environments(after: $after, first: $first) { + /// __typename + /// edges { /// __typename - /// edges { - /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... ListEnvironmentCommand_EnvironmentEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo /// } /// } /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment ListEnvironmentCommand_EnvironmentEdge on EnvironmentsEdge { /// cursor /// node { /// __typename - /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// ... ListEnvironmentCommand_Environment /// } /// } /// - /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// fragment ListEnvironmentCommand_Environment on Environment { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment EnvironmentDetailPrompt_Environment on Environment { /// id /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// fragment PageInfo on PageInfo { @@ -150669,77 +152204,256 @@ private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOpera /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IListEnvironmentCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation( - /// $input: PublishMcpFeatureCollectionInput! + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! /// ) { - /// publishMcpFeatureCollection(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// id + /// ... EnvironmentDetailPrompt_Environment + /// } + /// } + /// + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQueryQueryDocument : global::StrawberryShake.IDocument + { + private ShowEnvironmentCommandQueryQueryDocument() + { + } + + public static ShowEnvironmentCommandQueryQueryDocument Instance { get; } = new ShowEnvironmentCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "35993498c755e51178ea417965c3a164"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation + /// + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! + /// ) { + /// node(id: $workspaceId) { + /// __typename + /// ... EnvironmentDetailPrompt_Environment + /// } + /// } + /// + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + } + + private ShowEnvironmentCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _iDFormatter = iDFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowEnvironmentCommandQueryResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(workspaceId); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(workspaceId); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatWorkspaceId(global::System.String value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _iDFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the ShowEnvironmentCommandQuery GraphQL operation + /// + /// query ShowEnvironmentCommandQuery( + /// $workspaceId: ID! + /// ) { + /// node(id: $workspaceId) { + /// __typename + /// ... EnvironmentDetailPrompt_Environment + /// } + /// } + /// + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IShowEnvironmentCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// 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 } } } ] }) { + /// __typename + /// changes { + /// __typename + /// referenceId + /// error { + /// __typename + /// ... Error + /// } + /// result { + /// __typename + /// ... CreateEnvironmentCommandMutation_Environment + /// } + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// /// fragment Error on Error { /// message /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... Error - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { - /// tag - /// message - /// mcpFeatureCollectionId - /// ... Error + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class CreateEnvironmentCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private PublishMcpFeatureCollectionCommandMutationMutationDocument() + private CreateEnvironmentCommandMutationMutationDocument() { } - public static PublishMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new PublishMcpFeatureCollectionCommandMutationMutationDocument(); + public static CreateEnvironmentCommandMutationMutationDocument Instance { get; } = new CreateEnvironmentCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "736b80b8a3e39c5fcb5c192b42e084b4"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b9c18dd6d50ba180b90f48a77b096216"); public override global::System.String ToString() { @@ -150753,94 +152467,94 @@ private PublishMcpFeatureCollectionCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation( - /// $input: PublishMcpFeatureCollectionInput! + /// mutation CreateEnvironmentCommandMutation( + /// $workspaceId: ID! + /// $name: String! /// ) { - /// publishMcpFeatureCollection(input: $input) { + /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { /// __typename - /// id + /// changes { + /// __typename + /// referenceId + /// error { + /// __typename + /// ... Error + /// } + /// result { + /// __typename + /// ... CreateEnvironmentCommandMutation_Environment + /// } + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// /// fragment Error on Error { /// message /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... Error - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { - /// tag - /// message - /// mcpFeatureCollectionId - /// ... Error + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation + public partial class CreateEnvironmentCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishMcpFeatureCollectionInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _publishMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("PublishMcpFeatureCollectionInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); } - private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishMcpFeatureCollectionInputFormatter) + private CreateEnvironmentCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _publishMcpFeatureCollectionInputFormatter = publishMcpFeatureCollectionInputFormatter; + _stringFormatter = @stringFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateEnvironmentCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _publishMcpFeatureCollectionInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutationMutation(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId, name); foreach (var configure in _configure) { configure(request); @@ -150849,32 +152563,43 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId, name); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String name) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + variables.Add("name", FormatName(name)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput value) + private global::System.Object? FormatWorkspaceId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _publishMcpFeatureCollectionInputFormatter.Format(value); + return _iDFormatter.Format(value); + } + + private global::System.Object? FormatName(global::System.String value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _stringFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -150885,639 +152610,1062 @@ private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberrySha // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the CreateEnvironmentCommandMutation GraphQL operation /// - /// mutation PublishMcpFeatureCollectionCommandMutation( - /// $input: PublishMcpFeatureCollectionInput! + /// mutation CreateEnvironmentCommandMutation( + /// $workspaceId: ID! + /// $name: String! /// ) { - /// publishMcpFeatureCollection(input: $input) { + /// pushWorkspaceChanges(input: { changes: [ { environment: { create: { name: $name, referenceId: "env", workspaceId: $workspaceId } } } ] }) { /// __typename - /// id + /// changes { + /// __typename + /// referenceId + /// error { + /// __typename + /// ... Error + /// } + /// result { + /// __typename + /// ... CreateEnvironmentCommandMutation_Environment + /// } + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... McpFeatureCollectionNotFoundError - /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// /// fragment Error on Error { /// message /// } /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment CreateEnvironmentCommandMutation_Environment on Environment { /// name - /// ... Error - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// ... EnvironmentDetailPrompt_Environment /// } /// - /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { - /// tag - /// message - /// mcpFeatureCollectionId - /// ... Error + /// fragment EnvironmentDetailPrompt_Environment on Environment { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateEnvironmentCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation + /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int /// ) { - /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// apiKeys(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListApiKeyCommand_ApiKeyEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// - /// fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { - /// state - /// errors { + /// fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { + /// cursor + /// node { /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... McpFeatureCollectionValidationError + /// ... ListApiKeyCommand_ApiKey /// } /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { - /// __typename - /// message - /// } - /// - /// fragment ProcessingTimeoutError on ProcessingTimeoutError { - /// __typename - /// message + /// fragment ListApiKeyCommand_ApiKey on ApiKey { + /// id + /// name + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// - /// fragment Error on Error { - /// message + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } - /// - /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { - /// collections { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListApiKeyCommandQueryQueryDocument : global::StrawberryShake.IDocument + { + private ListApiKeyCommandQueryQueryDocument() + { + } + + public static ListApiKeyCommandQueryQueryDocument Instance { get; } = new ListApiKeyCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "73d47ef547275fb8b3364106fa956029"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation + /// + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int + /// ) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { + /// apiKeys(after: $after, first: $first) { /// __typename - /// errors { + /// edges { /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name + /// ... ListApiKeyCommand_ApiKeyEdge /// } - /// ... on McpFeatureCollectionValidationTool { - /// name + /// pageInfo { + /// __typename + /// ... PageInfo /// } /// } /// } /// } /// - /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { - /// code - /// message - /// path - /// locations { + /// fragment ListApiKeyCommand_ApiKeyEdge on ApiKeysEdge { + /// cursor + /// node { /// __typename - /// column - /// line + /// ... ListApiKeyCommand_ApiKey /// } /// } /// - /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { - /// message + /// fragment ListApiKeyCommand_ApiKey on ApiKey { + /// id + /// name + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { - /// state + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// - /// fragment OperationInProgress on OperationInProgress { - /// state + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } - /// - /// fragment WaitForApproval on WaitForApproval { - /// state - /// deployment { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListApiKeyCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + } + + private ListApiKeyCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _stringFormatter = @stringFormatter; + _intFormatter = @intFormatter; + _iDFormatter = iDFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListApiKeyCommandQueryResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.ListApiKeyCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter, _iDFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(workspaceId, after, first); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(workspaceId, after, first); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _iDFormatter.Format(value); + } + + private global::System.Object? FormatAfter(global::System.String? value) + { + if (value is null) + { + return value; + } + else + { + return _stringFormatter.Format(value); + } + } + + private global::System.Object? FormatFirst(global::System.Int32? value) + { + if (value is null) + { + return value; + } + else + { + return _intFormatter.Format(value); + } + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the ListApiKeyCommandQuery GraphQL operation + /// + /// query ListApiKeyCommandQuery( + /// $workspaceId: ID! + /// $after: String + /// $first: Int + /// ) { + /// workspaceById(workspaceId: $workspaceId) { /// __typename - /// ... on SchemaDeployment { - /// errors { - /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// ... on ClientDeployment { - /// errors { + /// apiKeys(after: $after, first: $first) { + /// __typename + /// edges { /// __typename - /// ... PersistedQueryValidationError + /// ... ListApiKeyCommand_ApiKeyEdge /// } - /// } - /// ... on FusionConfigurationDeployment { - /// errors { + /// pageInfo { /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ... PageInfo /// } /// } - /// ... on OpenApiCollectionDeployment { - /// errors { + /// } + /// } + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListApiKeyCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { + /// createApiKey(input: $input) { + /// __typename + /// result { + /// __typename + /// key { /// __typename - /// ... OpenApiCollectionValidationError + /// ... CreateApiKeyCommandMutation_ApiKey /// } + /// secret /// } - /// ... on McpFeatureCollectionDeployment { - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationError - /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... WorkspaceNotFound + /// ... PersonalWorkspaceNotSupportedError + /// ... ValidationError + /// ... RoleNotFoundError + /// ... Error /// } /// } /// } /// - /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { - /// __typename - /// message + /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message - /// column - /// position - /// line + /// apiId + /// ... Error /// } /// - /// fragment SchemaChangeViolationError on SchemaChangeViolationError { + /// fragment Error on Error { /// message - /// changes { - /// __typename - /// ... SchemaChangeLogEntry - /// } /// } /// - /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { + /// fragment WorkspaceNotFound on WorkspaceNotFound { /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// message + /// workspaceId + /// ... Error /// } /// - /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename + /// message + /// ... Error /// } /// - /// fragment SchemaChange on SchemaChange { - /// severity - /// } - /// - /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment ValidationError on ValidationError { /// __typename + /// message + /// errors { + /// __typename + /// message + /// } + /// ... Error /// } /// - /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename - /// changes { + /// message + /// roleId + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument + { + private CreateApiKeyCommandMutationMutationDocument() + { + } + + public static CreateApiKeyCommandMutationMutationDocument Instance { get; } = new CreateApiKeyCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "992b8ab9fd5e45569fda61f616659e1a"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { + /// createApiKey(input: $input) { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// result { + /// __typename + /// key { + /// __typename + /// ... CreateApiKeyCommandMutation_ApiKey + /// } + /// secret + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... WorkspaceNotFound + /// ... PersonalWorkspaceNotSupportedError + /// ... ValidationError + /// ... RoleNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange - /// interfaceName - /// severity + /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange - /// interfaceName - /// severity + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// - /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange - /// old - /// new - /// severity + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange - /// coordinate - /// typeName - /// fieldName - /// severity + /// fragment Error on Error { + /// message /// } /// - /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange - /// coordinate - /// typeName - /// fieldName - /// severity + /// fragment WorkspaceNotFound on WorkspaceNotFound { + /// __typename + /// message + /// workspaceId + /// ... Error /// } /// - /// 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 + /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename + /// message + /// ... Error /// } /// - /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// name + /// fragment ValidationError on ValidationError { /// __typename - /// changes { + /// message + /// errors { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// message /// } + /// ... Error /// } /// - /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange - /// deprecationReason - /// severity - /// } - /// - /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange - /// oldType - /// newType - /// severity + /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename + /// message + /// roleId + /// ... Error /// } - /// - /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiKeyCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createApiKeyInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _createApiKeyInputFormatter = serializerResolver.GetInputValueFormatter("CreateApiKeyInput"); + } + + private CreateApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createApiKeyInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _createApiKeyInputFormatter = createApiKeyInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateApiKeyCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createApiKeyInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _createApiKeyInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the CreateApiKeyCommandMutation GraphQL operation + /// + /// mutation CreateApiKeyCommandMutation( + /// $input: CreateApiKeyInput! + /// ) { + /// createApiKey(input: $input) { /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged + /// result { + /// __typename + /// key { + /// __typename + /// ... CreateApiKeyCommandMutation_ApiKey + /// } + /// secret + /// } + /// errors { + /// __typename + /// ... ApiNotFoundError + /// ... WorkspaceNotFound + /// ... PersonalWorkspaceNotSupportedError + /// ... ValidationError + /// ... RoleNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// fieldName - /// changes { + /// fragment CreateApiKeyCommandMutation_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey + /// } + /// + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// name /// } /// } /// - /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename - /// changes { - /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded - /// } + /// message + /// apiId + /// ... Error /// } /// - /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange - /// location - /// severity + /// fragment Error on Error { + /// message + /// } + /// + /// fragment WorkspaceNotFound on WorkspaceNotFound { /// __typename + /// message + /// workspaceId + /// ... Error /// } /// - /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange - /// location - /// severity + /// fragment PersonalWorkspaceNotSupportedError on PersonalWorkspaceNotSupportedError { /// __typename + /// message + /// ... Error /// } /// - /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment ValidationError on ValidationError { /// __typename - /// changes { + /// message + /// errors { /// __typename - /// ... DescriptionChanged + /// message /// } + /// ... Error /// } /// - /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment RoleNotFoundError on RoleNotFoundError { /// __typename - /// changes { + /// message + /// roleId + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ICreateApiKeyCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { + /// deleteApiKey(input: $input) { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// apiKey { + /// __typename + /// ... DeleteApiKeyCommand_ApiKey + /// } + /// errors { + /// __typename + /// ... ApiKeyNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange - /// coordinate - /// severity - /// } - /// - /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// changes { + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged + /// name /// } /// } /// - /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { /// __typename - /// changes { - /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded - /// } - /// } - /// - /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange - /// typeName - /// severity + /// message + /// apiKeyId /// } /// - /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange - /// typeName - /// severity + /// fragment Error on Error { + /// message /// } - /// - /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyCommandMutationMutationDocument : global::StrawberryShake.IDocument + { + private DeleteApiKeyCommandMutationMutationDocument() + { + } + + public static DeleteApiKeyCommandMutationMutationDocument Instance { get; } = new DeleteApiKeyCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d9c3122efc6baad1e0bfd610a4503566"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { + /// deleteApiKey(input: $input) { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// apiKey { + /// __typename + /// ... DeleteApiKeyCommand_ApiKey + /// } + /// errors { + /// __typename + /// ... ApiKeyNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange - /// typeName - /// severity + /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey /// } /// - /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange - /// typeName - /// severity + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { + /// __typename + /// name + /// } /// } /// - /// fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { + /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { /// __typename /// message - /// errors { - /// __typename - /// message - /// code - /// } + /// apiKeyId /// } /// - /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// fragment Error on Error { /// message - /// client { - /// __typename - /// id - /// name - /// } - /// queries { + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteApiKeyInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _deleteApiKeyInputFormatter = serializerResolver.GetInputValueFormatter("DeleteApiKeyInput"); + } + + private DeleteApiKeyCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteApiKeyInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _deleteApiKeyInputFormatter = deleteApiKeyInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteApiKeyCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteApiKeyInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _deleteApiKeyInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the DeleteApiKeyCommandMutation GraphQL operation + /// + /// mutation DeleteApiKeyCommandMutation( + /// $input: DeleteApiKeyInput! + /// ) { + /// deleteApiKey(input: $input) { /// __typename - /// deployedTags - /// message - /// hash + /// apiKey { + /// __typename + /// ... DeleteApiKeyCommand_ApiKey + /// } /// errors { /// __typename - /// message - /// code - /// path - /// locations { - /// __typename - /// column - /// line - /// } + /// ... ApiKeyNotFoundError + /// ... Error /// } /// } /// } /// - /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { - /// collections { + /// fragment DeleteApiKeyCommand_ApiKey on ApiKey { + /// id + /// ... ApiKeyDetailPrompt_ApiKey + /// } + /// + /// fragment ApiKeyDetailPrompt_ApiKey on ApiKey { + /// id + /// name + /// workspace { /// __typename - /// openApiCollection { + /// name + /// } + /// } + /// + /// fragment ApiKeyNotFoundError on ApiKeyNotFoundError { + /// __typename + /// message + /// apiKeyId + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteApiKeyCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! + /// ) { + /// uploadMcpFeatureCollection(input: $input) { + /// __typename + /// mcpFeatureCollectionVersion { /// __typename /// id - /// name /// } - /// entities { + /// errors { /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } + /// ... UnauthorizedOperation + /// ... McpFeatureCollectionNotFoundError + /// ... InvalidMcpFeatureCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error /// } /// } /// } /// - /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { - /// code + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// path - /// locations { - /// __typename - /// column - /// line - /// } + /// ... Error /// } /// - /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { + /// fragment Error on Error { /// message /// } /// - /// fragment ProcessingTaskApproved on ProcessingTaskApproved { - /// state + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error /// } /// - /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { - /// ready: __typename + /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { + /// message /// } /// - /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { - /// queued: __typename - /// queuePosition + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument + public partial class UploadMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() + private UploadMcpFeatureCollectionCommandMutationMutationDocument() { } - public static PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; + public static UploadMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new UploadMcpFeatureCollectionCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "953b6423bcadc90c2f30315980801a9d"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "eb5219613bc72b416f81729786573163"); public override global::System.String ToString() { @@ -151531,516 +153679,642 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation + /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! /// ) { - /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { + /// uploadMcpFeatureCollection(input: $input) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// mcpFeatureCollectionVersion { + /// __typename + /// id + /// } + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... McpFeatureCollectionNotFoundError + /// ... InvalidMcpFeatureCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error + /// } /// } /// } /// - /// fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { - /// state - /// errors { - /// __typename - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError - /// ... McpFeatureCollectionValidationError - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { - /// __typename + /// fragment Error on Error { /// message /// } /// - /// fragment ProcessingTimeoutError on ProcessingTimeoutError { - /// __typename + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error + /// } + /// + /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { /// message /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message /// ... Error /// } /// - /// fragment Error on Error { + /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// __typename /// message + /// ... Error /// } - /// - /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { - /// collections { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadMcpFeatureCollectionInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _uploadMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("UploadMcpFeatureCollectionInput"); + } + + private UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadMcpFeatureCollectionInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _uploadMcpFeatureCollectionInputFormatter = uploadMcpFeatureCollectionInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadMcpFeatureCollectionCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _uploadMcpFeatureCollectionInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + private void MapFilesFromTypeUploadMcpFeatureCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + var pathCollection = path + ".collection"; + var valueCollection = value.Collection; + files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeUploadMcpFeatureCollectionInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); + } + + 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.PersistedOperation, files: files, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _uploadMcpFeatureCollectionInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation UploadMcpFeatureCollectionCommandMutation( + /// $input: UploadMcpFeatureCollectionInput! + /// ) { + /// uploadMcpFeatureCollection(input: $input) { /// __typename - /// mcpFeatureCollection { + /// mcpFeatureCollectionVersion { /// __typename /// id - /// name /// } - /// entities { + /// errors { /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } + /// ... UnauthorizedOperation + /// ... McpFeatureCollectionNotFoundError + /// ... InvalidMcpFeatureCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error /// } /// } /// } /// - /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { - /// code + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// path - /// locations { - /// __typename - /// column - /// line - /// } + /// ... Error /// } /// - /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { + /// fragment Error on Error { /// message /// } /// - /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { - /// state - /// } - /// - /// fragment OperationInProgress on OperationInProgress { - /// state + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error /// } /// - /// fragment WaitForApproval on WaitForApproval { - /// state - /// deployment { - /// __typename - /// ... on SchemaDeployment { - /// errors { - /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// ... on ClientDeployment { - /// errors { - /// __typename - /// ... PersistedQueryValidationError - /// } - /// } - /// ... on FusionConfigurationDeployment { - /// errors { - /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// ... on OpenApiCollectionDeployment { - /// errors { - /// __typename - /// ... OpenApiCollectionValidationError - /// } - /// } - /// ... on McpFeatureCollectionDeployment { - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// } + /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { + /// message /// } /// - /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { + /// fragment DuplicatedTagError on DuplicatedTagError { /// __typename /// message + /// ... Error /// } /// - /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message - /// column - /// position - /// line + /// ... Error /// } - /// - /// fragment SchemaChangeViolationError on SchemaChangeViolationError { - /// message - /// changes { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { + /// validateMcpFeatureCollection(input: $input) { /// __typename - /// ... SchemaChangeLogEntry + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... McpFeatureCollectionNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { - /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange - /// } - /// - /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename + /// message + /// ... Error /// } /// - /// fragment SchemaChange on SchemaChange { - /// severity - /// } - /// - /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename + /// fragment Error on Error { + /// message /// } /// - /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment StageNotFoundError on StageNotFoundError { /// __typename - /// changes { - /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// } - /// } - /// - /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange - /// interfaceName - /// severity - /// } - /// - /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange - /// interfaceName - /// severity + /// message + /// name + /// ... Error /// } /// - /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange - /// old - /// new - /// severity - /// __typename + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error /// } - /// - /// 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 { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + { + private ValidateMcpFeatureCollectionCommandMutationMutationDocument() + { + } + + public static ValidateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "17c73eb7d485a0bf03b77efc0d4b7ecd"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { + /// validateMcpFeatureCollection(input: $input) { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... McpFeatureCollectionNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange - /// coordinate - /// severity - /// name - /// typeName + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename + /// message + /// ... Error /// } /// - /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange - /// coordinate - /// severity - /// name - /// typeName - /// __typename + /// fragment Error on Error { + /// message /// } /// - /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// name + /// fragment StageNotFoundError on StageNotFoundError { /// __typename - /// changes { + /// message + /// name + /// ... Error + /// } + /// + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateMcpFeatureCollectionInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _validateMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("ValidateMcpFeatureCollectionInput"); + } + + private ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateMcpFeatureCollectionInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _validateMcpFeatureCollectionInputFormatter = validateMcpFeatureCollectionInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateMcpFeatureCollectionCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _validateMcpFeatureCollectionInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + private void MapFilesFromTypeValidateMcpFeatureCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + var pathCollection = path + ".collection"; + var valueCollection = value.Collection; + files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeValidateMcpFeatureCollectionInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); + } + + 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.PersistedOperation, files: files, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _validateMcpFeatureCollectionInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation ValidateMcpFeatureCollectionCommandMutation( + /// $input: ValidateMcpFeatureCollectionInput! + /// ) { + /// validateMcpFeatureCollection(input: $input) { /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... McpFeatureCollectionNotFoundError + /// ... Error + /// } /// } /// } /// - /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange - /// deprecationReason - /// severity + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange - /// oldType - /// newType - /// severity - /// __typename + /// fragment Error on Error { + /// message /// } /// - /// fragment InputObjectModifiedChange on InputObjectModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment StageNotFoundError on StageNotFoundError { /// __typename - /// changes { - /// __typename - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... InputFieldChanged - /// } + /// message + /// name + /// ... Error /// } /// - /// fragment InputFieldChanged on InputFieldChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// fieldName - /// changes { + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation + /// + /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { + /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// ... McpFeatureCollectionVersionValidationFailed + /// ... McpFeatureCollectionVersionValidationSuccess + /// ... OperationInProgress + /// ... ValidationInProgress /// } /// } /// - /// fragment DirectiveModifiedChange on DirectiveModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { + /// state + /// errors { /// __typename - /// ... DirectiveLocationAdded - /// ... DirectiveLocationRemoved - /// ... DescriptionChanged - /// ... ArgumentRemoved - /// ... ArgumentChanged - /// ... ArgumentAdded + /// ... ProcessingTimeoutError + /// ... UnexpectedProcessingError + /// ... McpFeatureCollectionValidationError + /// ... McpFeatureCollectionValidationArchiveError /// } /// } /// - /// fragment DirectiveLocationAdded on DirectiveLocationAdded { - /// ... SchemaChange - /// location - /// severity + /// fragment ProcessingTimeoutError on ProcessingTimeoutError { /// __typename + /// message /// } /// - /// fragment DirectiveLocationRemoved on DirectiveLocationRemoved { - /// ... SchemaChange - /// location - /// severity + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { /// __typename + /// message /// } /// - /// fragment ScalarModifiedChange on ScalarModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { + /// collections { /// __typename - /// ... DescriptionChanged + /// mcpFeatureCollection { + /// __typename + /// id + /// name + /// } + /// entities { + /// __typename + /// errors { + /// __typename + /// ... McpFeatureCollectionValidationDocumentError + /// ... McpFeatureCollectionValidationEntityValidationError + /// } + /// ... on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// ... on McpFeatureCollectionValidationTool { + /// name + /// } + /// } /// } /// } /// - /// fragment EnumModifiedChange on EnumModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { + /// code + /// message + /// path + /// locations { /// __typename - /// ... DescriptionChanged - /// ... EnumValueRemoved - /// ... EnumValueAdded - /// ... EnumValueChanged + /// column + /// line /// } /// } /// - /// fragment EnumValueRemoved on EnumValueRemoved { - /// ... SchemaChange - /// coordinate - /// severity - /// } - /// - /// fragment EnumValueAdded on EnumValueAdded { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { + /// message /// } /// - /// fragment EnumValueChanged on EnumValueChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// changes { - /// __typename - /// ... DeprecatedChange - /// ... DescriptionChanged - /// } + /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { + /// message /// } /// - /// fragment UnionModifiedChange on UnionModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { - /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded - /// } + /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { + /// state /// } /// - /// fragment UnionMemberRemoved on UnionMemberRemoved { - /// ... SchemaChange - /// typeName - /// severity + /// fragment OperationInProgress on OperationInProgress { + /// state /// } /// - /// fragment UnionMemberAdded on UnionMemberAdded { - /// ... SchemaChange - /// typeName - /// severity + /// fragment ValidationInProgress on ValidationInProgress { + /// state /// } - /// - /// fragment InterfaceModifiedChange on InterfaceModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename - /// changes { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument + { + private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() + { + } + + public static ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "9a5ac6c756ae69d3cb53bae89f844cb6"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation + /// + /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// $requestId: ID! + /// ) { + /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged - /// ... PossibleTypeAdded - /// ... PossibleTypeRemoved + /// ... McpFeatureCollectionVersionValidationFailed + /// ... McpFeatureCollectionVersionValidationSuccess + /// ... OperationInProgress + /// ... ValidationInProgress /// } /// } /// - /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange - /// typeName - /// severity - /// } - /// - /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange - /// typeName - /// severity + /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { + /// state + /// errors { + /// __typename + /// ... ProcessingTimeoutError + /// ... UnexpectedProcessingError + /// ... McpFeatureCollectionValidationError + /// ... McpFeatureCollectionValidationArchiveError + /// } /// } /// - /// fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { + /// fragment ProcessingTimeoutError on ProcessingTimeoutError { /// __typename /// message - /// errors { - /// __typename - /// message - /// code - /// } /// } /// - /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// __typename /// message - /// client { - /// __typename - /// id - /// name - /// } - /// queries { - /// __typename - /// deployedTags - /// message - /// hash - /// errors { - /// __typename - /// message - /// code - /// path - /// locations { - /// __typename - /// column - /// line - /// } - /// } - /// } /// } /// - /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { + /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// openApiCollection { + /// mcpFeatureCollection { /// __typename /// id /// name @@ -152049,21 +154323,20 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// __typename /// errors { /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError + /// ... McpFeatureCollectionValidationDocumentError + /// ... McpFeatureCollectionValidationEntityValidationError /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route + /// ... on McpFeatureCollectionValidationPrompt { + /// name /// } - /// ... on OpenApiCollectionValidationModel { + /// ... on McpFeatureCollectionValidationTool { /// name /// } /// } /// } /// } /// - /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { + /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { /// code /// message /// path @@ -152074,38 +154347,41 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// } /// - /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { + /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { /// message /// } /// - /// fragment ProcessingTaskApproved on ProcessingTaskApproved { + /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { + /// message + /// } + /// + /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { /// state /// } /// - /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { - /// ready: __typename + /// fragment OperationInProgress on OperationInProgress { + /// state /// } /// - /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { - /// queued: __typename - /// queuePosition + /// fragment ValidationInProgress on ValidationInProgress { + /// state /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription + public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishMcpFeatureCollectionCommandSubscriptionResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateMcpFeatureCollectionCommandSubscriptionResult); - public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(requestId); return _operationExecutor.Watch(request, strategy); @@ -152120,7 +154396,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.PersistedOperation, 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) @@ -152141,52 +154417,39 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation + /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription PublishMcpFeatureCollectionCommandSubscription( + /// subscription ValidateMcpFeatureCollectionCommandSubscription( /// $requestId: ID! /// ) { - /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { + /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionPublishFailed - /// ... McpFeatureCollectionVersionPublishSuccess + /// ... McpFeatureCollectionVersionValidationFailed + /// ... McpFeatureCollectionVersionValidationSuccess /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// ... ValidationInProgress /// } /// } /// - /// fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { + /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { /// state /// errors { /// __typename - /// ... UnexpectedProcessingError /// ... ProcessingTimeoutError - /// ... ConcurrentOperationError + /// ... UnexpectedProcessingError /// ... McpFeatureCollectionValidationError + /// ... McpFeatureCollectionValidationArchiveError /// } /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { - /// __typename - /// message - /// } - /// /// fragment ProcessingTimeoutError on ProcessingTimeoutError { /// __typename /// message /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { /// __typename /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message /// } /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { @@ -152229,7 +154492,11 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// message /// } /// - /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { + /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { + /// message + /// } + /// + /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { /// state /// } /// @@ -152237,545 +154504,608 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// state /// } /// - /// fragment WaitForApproval on WaitForApproval { + /// fragment ValidationInProgress on ValidationInProgress { /// state - /// deployment { + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscription : global::StrawberryShake.IOperationRequestFactory + { + global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { + /// deleteMcpFeatureCollectionById(input: $input) { /// __typename - /// ... on SchemaDeployment { - /// errors { - /// __typename - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// ... on ClientDeployment { - /// errors { - /// __typename - /// ... PersistedQueryValidationError - /// } - /// } - /// ... on FusionConfigurationDeployment { - /// errors { - /// __typename - /// ... SchemaChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError - /// } - /// } - /// ... on OpenApiCollectionDeployment { - /// errors { - /// __typename - /// ... OpenApiCollectionValidationError - /// } + /// mcpFeatureCollection { + /// __typename + /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection /// } - /// ... on McpFeatureCollectionDeployment { - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationError - /// } + /// errors { + /// __typename + /// ... Error + /// ... McpFeatureCollectionNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { - /// __typename - /// message + /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { + /// name + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { - /// __typename + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name + /// } + /// + /// fragment Error on Error { /// message - /// column - /// position - /// line /// } /// - /// fragment SchemaChangeViolationError on SchemaChangeViolationError { + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// changes { + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument + { + private DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument() + { + } + + public static DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteMcpFeatureCollectionByIdCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a87294003c8142e3996f1398a866c64f"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { + /// deleteMcpFeatureCollectionById(input: $input) { /// __typename - /// ... SchemaChangeLogEntry + /// mcpFeatureCollection { + /// __typename + /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... McpFeatureCollectionNotFoundError + /// ... UnauthorizedOperation + /// } /// } /// } /// - /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { - /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { + /// name + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment SchemaChange on SchemaChange { - /// severity + /// fragment Error on Error { + /// message /// } /// - /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { - /// ... SchemaChange - /// coordinate - /// severity - /// __typename + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error /// } /// - /// fragment ObjectModifiedChange on ObjectModifiedChange { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename - /// changes { + /// message + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteMcpFeatureCollectionByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteMcpFeatureCollectionByIdInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _deleteMcpFeatureCollectionByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteMcpFeatureCollectionByIdInput"); + } + + private DeleteMcpFeatureCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteMcpFeatureCollectionByIdInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _deleteMcpFeatureCollectionByIdInputFormatter = deleteMcpFeatureCollectionByIdInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteMcpFeatureCollectionByIdCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteMcpFeatureCollectionByIdInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _deleteMcpFeatureCollectionByIdInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the DeleteMcpFeatureCollectionByIdCommandMutation GraphQL operation + /// + /// mutation DeleteMcpFeatureCollectionByIdCommandMutation( + /// $input: DeleteMcpFeatureCollectionByIdInput! + /// ) { + /// deleteMcpFeatureCollectionById(input: $input) { /// __typename - /// ... InterfaceImplementationAdded - /// ... InterfaceImplementationRemoved - /// ... DescriptionChanged - /// ... FieldAddedChange - /// ... FieldRemovedChange - /// ... OutputFieldChanged + /// mcpFeatureCollection { + /// __typename + /// ... DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... McpFeatureCollectionNotFoundError + /// ... UnauthorizedOperation + /// } /// } /// } /// - /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { - /// ... SchemaChange - /// interfaceName - /// severity + /// fragment DeleteMcpFeatureCollectionByIdCommandMutation_McpFeatureCollection on McpFeatureCollection { + /// name + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { - /// ... SchemaChange - /// interfaceName - /// severity + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment DescriptionChanged on DescriptionChanged { - /// ... SchemaChange - /// old - /// new - /// severity - /// __typename + /// fragment Error on Error { + /// message /// } /// - /// fragment FieldAddedChange on FieldAddedChange { - /// ... SchemaChange - /// coordinate - /// typeName - /// fieldName - /// severity + /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { + /// mcpFeatureCollectionId + /// ... Error /// } /// - /// fragment FieldRemovedChange on FieldRemovedChange { - /// ... SchemaChange - /// coordinate - /// typeName - /// fieldName - /// severity + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } - /// - /// fragment OutputFieldChanged on OutputFieldChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// fieldName - /// changes { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IDeleteMcpFeatureCollectionByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { + /// createMcpFeatureCollection(input: $input) { /// __typename - /// ... ArgumentRemoved - /// ... ArgumentAdded - /// ... ArgumentChanged - /// ... DescriptionChanged - /// ... TypeChanged - /// ... DeprecatedChange + /// mcpFeatureCollection { + /// __typename + /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation + /// } /// } /// } /// - /// fragment ArgumentRemoved on ArgumentRemoved { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { /// name - /// typeName - /// __typename + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment ArgumentAdded on ArgumentAdded { - /// ... SchemaChange - /// coordinate - /// severity + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id /// name - /// typeName - /// __typename /// } /// - /// fragment ArgumentChanged on ArgumentChanged { - /// ... SchemaChange - /// coordinate - /// severity - /// name - /// __typename - /// changes { - /// __typename - /// ... DescriptionChanged - /// ... DeprecatedChange - /// ... TypeChanged - /// } + /// fragment Error on Error { + /// message /// } /// - /// fragment DeprecatedChange on DeprecatedChange { - /// ... SchemaChange - /// deprecationReason - /// severity + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment TypeChanged on TypeChanged { - /// ... SchemaChange - /// oldType - /// newType - /// severity + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename + /// message + /// ... Error /// } - /// - /// 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 { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + { + private CreateMcpFeatureCollectionCommandMutationMutationDocument() + { + } + + public static CreateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new CreateMcpFeatureCollectionCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ba70847f71df37bf6b676e2c4ef91570"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { + /// createMcpFeatureCollection(input: $input) { /// __typename - /// ... DescriptionChanged - /// ... UnionMemberRemoved - /// ... UnionMemberAdded + /// mcpFeatureCollection { + /// __typename + /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation + /// } /// } /// } /// - /// 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 CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { + /// name + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment PossibleTypeAdded on PossibleTypeAdded { - /// ... SchemaChange - /// typeName - /// severity + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment PossibleTypeRemoved on PossibleTypeRemoved { - /// ... SchemaChange - /// typeName - /// severity + /// fragment Error on Error { + /// message /// } /// - /// fragment InvalidGraphQLSchemaError on InvalidGraphQLSchemaError { + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message - /// errors { - /// __typename - /// message - /// code - /// } + /// apiId + /// ... Error /// } /// - /// fragment PersistedQueryValidationError on PersistedQueryValidationError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message - /// client { - /// __typename - /// id - /// name - /// } - /// queries { - /// __typename - /// deployedTags - /// message - /// hash - /// errors { - /// __typename - /// message - /// code - /// path - /// locations { - /// __typename - /// column - /// line - /// } - /// } - /// } + /// ... Error /// } - /// - /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { - /// collections { + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createMcpFeatureCollectionInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _createMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("CreateMcpFeatureCollectionInput"); + } + + private CreateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createMcpFeatureCollectionInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _createMcpFeatureCollectionInputFormatter = createMcpFeatureCollectionInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateMcpFeatureCollectionCommandMutationResult); + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createMcpFeatureCollectionInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _createMcpFeatureCollectionInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the CreateMcpFeatureCollectionCommandMutation GraphQL operation + /// + /// mutation CreateMcpFeatureCollectionCommandMutation( + /// $input: CreateMcpFeatureCollectionInput! + /// ) { + /// createMcpFeatureCollection(input: $input) { /// __typename - /// openApiCollection { + /// mcpFeatureCollection { /// __typename - /// id - /// name + /// ... CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection /// } - /// entities { + /// errors { /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } + /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { - /// code - /// message - /// path - /// locations { - /// __typename - /// column - /// line - /// } + /// fragment CreateMcpFeatureCollectionCommandMutation_McpFeatureCollection on McpFeatureCollection { + /// name + /// id + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { - /// message + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment ProcessingTaskApproved on ProcessingTaskApproved { - /// state + /// fragment Error on Error { + /// message /// } /// - /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { - /// ready: __typename + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error /// } /// - /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { - /// queued: __typename - /// queuePosition + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscription : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation( - /// $input: UploadMcpFeatureCollectionInput! + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// uploadMcpFeatureCollection(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ... on Api { + /// mcpFeatureCollections(first: $first, after: $after) { + /// __typename + /// edges { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// cursor + /// node { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// } /// } /// - /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { - /// message + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// id + /// name + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class ListMcpFeatureCollectionCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private UploadMcpFeatureCollectionCommandMutationMutationDocument() + private ListMcpFeatureCollectionCommandQueryQueryDocument() { } - public static UploadMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new UploadMcpFeatureCollectionCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static ListMcpFeatureCollectionCommandQueryQueryDocument Instance { get; } = new ListMcpFeatureCollectionCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "eb5219613bc72b416f81729786573163"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7fed272d6aaed647d16d156856db0eed"); public override global::System.String ToString() { @@ -152789,100 +155119,103 @@ private UploadMcpFeatureCollectionCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation( - /// $input: UploadMcpFeatureCollectionInput! + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// uploadMcpFeatureCollection(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ... on Api { + /// mcpFeatureCollections(first: $first, after: $after) { + /// __typename + /// edges { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// cursor + /// node { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// } /// } /// - /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { - /// message + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// id + /// name + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation + public partial class ListMcpFeatureCollectionCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadMcpFeatureCollectionInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _uploadMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("UploadMcpFeatureCollectionInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadMcpFeatureCollectionInputFormatter) + private ListMcpFeatureCollectionCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _uploadMcpFeatureCollectionInputFormatter = uploadMcpFeatureCollectionInputFormatter; + _stringFormatter = @stringFormatter; + _iDFormatter = iDFormatter; + _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListMcpFeatureCollectionCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _uploadMcpFeatureCollectionInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(apiId, after, first); foreach (var configure in _configure) { configure(request); @@ -152891,132 +155224,138 @@ private UploadMcpFeatureCollectionCommandMutationMutation(global::StrawberryShak return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - private void MapFilesFromTypeUploadMcpFeatureCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var pathCollection = path + ".collection"; - var valueCollection = value.Collection; - files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); + var request = CreateRequest(apiId, after, first); + return _operationExecutor.Watch(request, strategy); } - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) { - if (value is { } value_i) - { - MapFilesFromTypeUploadMcpFeatureCollectionInput(path, value_i, files); - } + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("apiId", FormatApiId(apiId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); + return new global::StrawberryShake.OperationRequest(id: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance.Hash.Value, name: "ListMcpFeatureCollectionCommandQuery", document: ListMcpFeatureCollectionCommandQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input) + private global::System.Object? FormatApiId(global::System.String value) { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _iDFormatter.Format(value); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) + private global::System.Object? FormatAfter(global::System.String? value) { - return new global::StrawberryShake.OperationRequest(id: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance.Hash.Value, name: "UploadMcpFeatureCollectionCommandMutation", document: UploadMcpFeatureCollectionCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, files: files, variables: variables); + if (value is null) + { + return value; + } + else + { + return _stringFormatter.Format(value); + } } - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput value) + private global::System.Object? FormatFirst(global::System.Int32? value) { if (value is null) { - throw new global::System.ArgumentNullException(nameof(value)); + return value; + } + else + { + return _intFormatter.Format(value); } - - return _uploadMcpFeatureCollectionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the UploadMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the ListMcpFeatureCollectionCommandQuery GraphQL operation /// - /// mutation UploadMcpFeatureCollectionCommandMutation( - /// $input: UploadMcpFeatureCollectionInput! + /// query ListMcpFeatureCollectionCommandQuery( + /// $apiId: ID! + /// $after: String + /// $first: Int /// ) { - /// uploadMcpFeatureCollection(input: $input) { + /// node(id: $apiId) { /// __typename - /// mcpFeatureCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... McpFeatureCollectionNotFoundError - /// ... InvalidMcpFeatureCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error + /// ... on Api { + /// mcpFeatureCollections(first: $first, after: $after) { + /// __typename + /// edges { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { - /// mcpFeatureCollectionId - /// ... Error + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// cursor + /// node { + /// __typename + /// ... ListMcpFeatureCollectionCommandQuery_McpFeatureCollection + /// } /// } /// - /// fragment InvalidMcpFeatureCollectionArchiveError on InvalidMcpFeatureCollectionArchiveError { - /// message + /// fragment ListMcpFeatureCollectionCommandQuery_McpFeatureCollection on McpFeatureCollection { + /// id + /// name + /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection /// } /// - /// fragment DuplicatedTagError on DuplicatedTagError { - /// __typename - /// message - /// ... Error + /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// id + /// name /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IListMcpFeatureCollectionCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation ValidateMcpFeatureCollectionCommandMutation( - /// $input: ValidateMcpFeatureCollectionInput! + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! /// ) { - /// validateMcpFeatureCollection(input: $input) { + /// publishMcpFeatureCollection(input: $input) { /// __typename /// id /// errors { @@ -153024,6 +155363,7 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// ... UnauthorizedOperation /// ... StageNotFoundError /// ... McpFeatureCollectionNotFoundError + /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } @@ -153050,19 +155390,26 @@ public partial interface IUploadMcpFeatureCollectionCommandMutationMutation : gl /// mcpFeatureCollectionId /// ... Error /// } + /// + /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { + /// tag + /// message + /// mcpFeatureCollectionId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class PublishMcpFeatureCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private ValidateMcpFeatureCollectionCommandMutationMutationDocument() + private PublishMcpFeatureCollectionCommandMutationMutationDocument() { } - public static ValidateMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandMutationMutationDocument(); + public static PublishMcpFeatureCollectionCommandMutationMutationDocument Instance { get; } = new PublishMcpFeatureCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "17c73eb7d485a0bf03b77efc0d4b7ecd"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "736b80b8a3e39c5fcb5c192b42e084b4"); public override global::System.String ToString() { @@ -153076,12 +155423,12 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation ValidateMcpFeatureCollectionCommandMutation( - /// $input: ValidateMcpFeatureCollectionInput! + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! /// ) { - /// validateMcpFeatureCollection(input: $input) { + /// publishMcpFeatureCollection(input: $input) { /// __typename /// id /// errors { @@ -153089,6 +155436,7 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// ... UnauthorizedOperation /// ... StageNotFoundError /// ... McpFeatureCollectionNotFoundError + /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } @@ -153115,45 +155463,52 @@ private ValidateMcpFeatureCollectionCommandMutationMutationDocument() /// mcpFeatureCollectionId /// ... Error /// } + /// + /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { + /// tag + /// message + /// mcpFeatureCollectionId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation + public partial class PublishMcpFeatureCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _validateMcpFeatureCollectionInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishMcpFeatureCollectionInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _validateMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("ValidateMcpFeatureCollectionInput"); + _publishMcpFeatureCollectionInputFormatter = serializerResolver.GetInputValueFormatter("PublishMcpFeatureCollectionInput"); } - private ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter validateMcpFeatureCollectionInputFormatter) + private PublishMcpFeatureCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishMcpFeatureCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _validateMcpFeatureCollectionInputFormatter = validateMcpFeatureCollectionInputFormatter; + _publishMcpFeatureCollectionInputFormatter = publishMcpFeatureCollectionInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishMcpFeatureCollectionCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _validateMcpFeatureCollectionInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _publishMcpFeatureCollectionInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -153164,65 +155519,48 @@ private ValidateMcpFeatureCollectionCommandMutationMutation(global::StrawberrySh return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - private void MapFilesFromTypeValidateMcpFeatureCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) - { - var pathCollection = path + ".collection"; - var valueCollection = value.Collection; - files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput value, global::System.Collections.Generic.Dictionary files) - { - if (value is { } value_i) - { - MapFilesFromTypeValidateMcpFeatureCollectionInput(path, value_i, files); - } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); + return CreateRequest(variables); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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); + 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.CommandLine.Client.ValidateMcpFeatureCollectionInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _validateMcpFeatureCollectionInputFormatter.Format(value); + return _publishMcpFeatureCollectionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandMutation GraphQL operation + /// Represents the operation service of the PublishMcpFeatureCollectionCommandMutation GraphQL operation /// - /// mutation ValidateMcpFeatureCollectionCommandMutation( - /// $input: ValidateMcpFeatureCollectionInput! + /// mutation PublishMcpFeatureCollectionCommandMutation( + /// $input: PublishMcpFeatureCollectionInput! /// ) { - /// validateMcpFeatureCollection(input: $input) { + /// publishMcpFeatureCollection(input: $input) { /// __typename /// id /// errors { @@ -153230,6 +155568,7 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// ... UnauthorizedOperation /// ... StageNotFoundError /// ... McpFeatureCollectionNotFoundError + /// ... McpFeatureCollectionVersionNotFoundError /// ... Error /// } /// } @@ -153256,53 +155595,73 @@ private void MapFilesFromArgumentInput(global::System.String path, global::Chill /// mcpFeatureCollectionId /// ... Error /// } + /// + /// fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { + /// tag + /// message + /// mcpFeatureCollectionId + /// ... Error + /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation + /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// subscription PublishMcpFeatureCollectionCommandSubscription( /// $requestId: ID! /// ) { - /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { + /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess + /// ... McpFeatureCollectionVersionPublishFailed + /// ... McpFeatureCollectionVersionPublishSuccess /// ... OperationInProgress - /// ... ValidationInProgress + /// ... WaitForApproval + /// ... ProcessingTaskApproved + /// ... ProcessingTaskIsReady + /// ... ProcessingTaskIsQueued /// } /// } /// - /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { + /// fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { /// state /// errors { /// __typename - /// ... ProcessingTimeoutError /// ... UnexpectedProcessingError + /// ... ProcessingTimeoutError + /// ... ConcurrentOperationError /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError /// } /// } /// + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// __typename + /// message + /// } + /// /// fragment ProcessingTimeoutError on ProcessingTimeoutError { /// __typename /// message /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message /// } /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { @@ -153345,11 +155704,7 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// message /// } /// - /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { - /// message - /// } - /// - /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { + /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { /// state /// } /// @@ -153357,96 +155712,443 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// state /// } /// - /// fragment ValidationInProgress on ValidationInProgress { - /// state - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument - { - private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() - { - } - - public static ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "9a5ac6c756ae69d3cb53bae89f844cb6"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation - /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( - /// $requestId: ID! - /// ) { - /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { - /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess - /// ... OperationInProgress - /// ... ValidationInProgress - /// } - /// } - /// - /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { + /// fragment WaitForApproval on WaitForApproval { /// state - /// errors { + /// deployment { /// __typename - /// ... ProcessingTimeoutError - /// ... UnexpectedProcessingError - /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError + /// ... on SchemaDeployment { + /// errors { + /// __typename + /// ... OperationsAreNotAllowedError + /// ... SchemaVersionSyntaxError + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } + /// } + /// ... on ClientDeployment { + /// errors { + /// __typename + /// ... PersistedQueryValidationError + /// } + /// } + /// ... on FusionConfigurationDeployment { + /// errors { + /// __typename + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } + /// } + /// ... on OpenApiCollectionDeployment { + /// errors { + /// __typename + /// ... OpenApiCollectionValidationError + /// } + /// } + /// ... on McpFeatureCollectionDeployment { + /// errors { + /// __typename + /// ... McpFeatureCollectionValidationError + /// } + /// } /// } /// } /// - /// fragment ProcessingTimeoutError on ProcessingTimeoutError { + /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { /// __typename /// message /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { /// __typename /// message + /// column + /// position + /// line /// } /// - /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { - /// collections { + /// fragment SchemaChangeViolationError on SchemaChangeViolationError { + /// message + /// changes { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } + /// ... 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 McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { + /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { + /// collections { + /// __typename + /// openApiCollection { + /// __typename + /// id + /// name + /// } + /// entities { + /// __typename + /// errors { + /// __typename + /// ... OpenApiCollectionValidationDocumentError + /// ... OpenApiCollectionValidationEntityValidationError + /// } + /// ... on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// ... on OpenApiCollectionValidationModel { + /// name + /// } + /// } + /// } + /// } + /// + /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { /// code /// message /// path @@ -153457,109 +156159,94 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// } /// } /// - /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { - /// message - /// } - /// - /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { + /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { /// message /// } /// - /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { + /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } /// - /// fragment OperationInProgress on OperationInProgress { - /// state + /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { + /// ready: __typename /// } /// - /// fragment ValidationInProgress on ValidationInProgress { - /// state + /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { + /// queued: __typename + /// queuePosition /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription + public partial class PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument : global::StrawberryShake.IDocument { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IValidateMcpFeatureCollectionCommandSubscriptionResult); - - public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(requestId); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String requestId) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("requestId", FormatRequestId(requestId)); - return CreateRequest(variables); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() { - 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) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } + public static PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "953b6423bcadc90c2f30315980801a9d"); - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + public override global::System.String ToString() { - return CreateRequest(variables!); +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif } } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ValidateMcpFeatureCollectionCommandSubscription GraphQL operation + /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation /// - /// subscription ValidateMcpFeatureCollectionCommandSubscription( + /// subscription PublishMcpFeatureCollectionCommandSubscription( /// $requestId: ID! /// ) { - /// onMcpFeatureCollectionVersionValidationUpdate(requestId: $requestId) { + /// onMcpFeatureCollectionVersionPublishingUpdate(requestId: $requestId) { /// __typename - /// ... McpFeatureCollectionVersionValidationFailed - /// ... McpFeatureCollectionVersionValidationSuccess + /// ... McpFeatureCollectionVersionPublishFailed + /// ... McpFeatureCollectionVersionPublishSuccess /// ... OperationInProgress - /// ... ValidationInProgress + /// ... WaitForApproval + /// ... ProcessingTaskApproved + /// ... ProcessingTaskIsReady + /// ... ProcessingTaskIsQueued /// } /// } /// - /// fragment McpFeatureCollectionVersionValidationFailed on McpFeatureCollectionVersionValidationFailed { + /// fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersionPublishFailed { /// state /// errors { /// __typename - /// ... ProcessingTimeoutError /// ... UnexpectedProcessingError + /// ... ProcessingTimeoutError + /// ... ConcurrentOperationError /// ... McpFeatureCollectionValidationError - /// ... McpFeatureCollectionValidationArchiveError /// } /// } /// + /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// __typename + /// message + /// } + /// /// fragment ProcessingTimeoutError on ProcessingTimeoutError { /// __typename /// message /// } /// - /// fragment UnexpectedProcessingError on UnexpectedProcessingError { + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message /// } /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { @@ -153602,11 +156289,7 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// message /// } /// - /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { - /// message - /// } - /// - /// fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { + /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { /// state /// } /// @@ -153614,444 +156297,1153 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// state /// } /// - /// fragment ValidationInProgress on ValidationInProgress { + /// fragment WaitForApproval on WaitForApproval { /// state - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscriptionSubscription : global::StrawberryShake.IOperationRequestFactory - { - global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the CreateMockSchema GraphQL operation - /// - /// mutation CreateMockSchema( - /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! - /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// deployment { /// __typename - /// mockSchema { - /// __typename - /// id - /// ... MockSchemaDetailPrompt + /// ... on SchemaDeployment { + /// errors { + /// __typename + /// ... OperationsAreNotAllowedError + /// ... SchemaVersionSyntaxError + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } /// } - /// errors { - /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError + /// ... on ClientDeployment { + /// errors { + /// __typename + /// ... PersistedQueryValidationError + /// } + /// } + /// ... on FusionConfigurationDeployment { + /// errors { + /// __typename + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } + /// } + /// ... on OpenApiCollectionDeployment { + /// errors { + /// __typename + /// ... OpenApiCollectionValidationError + /// } + /// } + /// ... on McpFeatureCollectionDeployment { + /// errors { + /// __typename + /// ... McpFeatureCollectionValidationError + /// } /// } /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { - /// id - /// name - /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { /// __typename /// message - /// apiId - /// ... Error /// } /// - /// fragment Error on Error { + /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { + /// __typename /// message + /// column + /// position + /// line /// } /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { - /// __typename + /// fragment SchemaChangeViolationError on SchemaChangeViolationError { /// message - /// name - /// ... Error - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaMutationDocument : global::StrawberryShake.IDocument - { - private CreateMockSchemaMutationDocument() - { - } - - public static CreateMockSchemaMutationDocument Instance { get; } = new CreateMockSchemaMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "dc1c3bda5bde62cf3e0b9afcaf32824e"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the CreateMockSchema GraphQL operation - /// - /// mutation CreateMockSchema( - /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! - /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// changes { /// __typename - /// mockSchema { - /// __typename - /// id - /// ... MockSchemaDetailPrompt - /// } - /// errors { - /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError - /// } + /// ... SchemaChangeLogEntry /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { - /// id - /// name - /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { + /// __typename + /// ... TypeSystemMemberAddedChange + /// ... TypeSystemMemberRemovedChange + /// ... ObjectModifiedChange + /// ... InputObjectModifiedChange + /// ... DirectiveModifiedChange + /// ... ScalarModifiedChange + /// ... EnumModifiedChange + /// ... UnionModifiedChange + /// ... InterfaceModifiedChange + /// ... SchemaChange /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment TypeSystemMemberAddedChange on TypeSystemMemberAddedChange { + /// ... SchemaChange + /// coordinate + /// severity /// __typename - /// message - /// apiId - /// ... Error /// } /// - /// fragment Error on Error { - /// message + /// fragment SchemaChange on SchemaChange { + /// severity /// } /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { + /// fragment TypeSystemMemberRemovedChange on TypeSystemMemberRemovedChange { + /// ... SchemaChange + /// coordinate + /// severity /// __typename - /// message - /// name - /// ... Error /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - } - - private CreateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _iDFormatter = iDFormatter; - _uploadFormatter = uploadFormatter; - _stringFormatter = @stringFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateMockSchemaResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchemaMutation(_operationExecutor, _configure.Add(configure), _iDFormatter, _uploadFormatter, _stringFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(apiId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - private void MapFilesFromArgumentBaseSchemaFile(global::System.String path, global::StrawberryShake.Upload value, global::System.Collections.Generic.Dictionary files) - { - files.Add(path, value is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path, global::StrawberryShake.Upload value, global::System.Collections.Generic.Dictionary files) - { - files.Add(path, value is global::StrawberryShake.Upload u ? u : null); - } - - public global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(apiId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); - variables.Add("baseSchemaFile", FormatBaseSchemaFile(baseSchemaFile)); - variables.Add("downstreamUrl", FormatDownstreamUrl(downstreamUrl)); - variables.Add("extensionsSchemaFile", FormatExtensionsSchemaFile(extensionsSchemaFile)); - variables.Add("name", FormatName(name)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentBaseSchemaFile("variables.baseSchemaFile", baseSchemaFile, files); - MapFilesFromArgumentExtensionsSchemaFile("variables.extensionsSchemaFile", extensionsSchemaFile, files); - return CreateRequest(variables, files); - } - - 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.PersistedOperation, files: files, variables: variables); - } - - private global::System.Object? FormatApiId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatBaseSchemaFile(global::StrawberryShake.Upload value) - { - return _uploadFormatter.Format(value); - } - - private global::System.Object? FormatDownstreamUrl(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _stringFormatter.Format(value); - } - - private global::System.Object? FormatExtensionsSchemaFile(global::StrawberryShake.Upload value) - { - return _uploadFormatter.Format(value); - } - - private global::System.Object? FormatName(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _stringFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the CreateMockSchema GraphQL operation - /// - /// mutation CreateMockSchema( - /// $apiId: ID! - /// $baseSchemaFile: Upload! - /// $downstreamUrl: String! - /// $extensionsSchemaFile: Upload! - /// $name: String! - /// ) { - /// createMockSchema(input: { apiId: $apiId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// + /// fragment ObjectModifiedChange on ObjectModifiedChange { + /// ... SchemaChange + /// coordinate + /// severity + /// __typename + /// changes { /// __typename - /// mockSchema { - /// __typename - /// id - /// ... MockSchemaDetailPrompt - /// } - /// errors { - /// __typename - /// ... ApiNotFoundError - /// ... MockSchemaNonUniqueNameError - /// } + /// ... InterfaceImplementationAdded + /// ... InterfaceImplementationRemoved + /// ... DescriptionChanged + /// ... FieldAddedChange + /// ... FieldRemovedChange + /// ... OutputFieldChanged /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { - /// id - /// name - /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// fragment InterfaceImplementationAdded on InterfaceImplementationAdded { + /// ... SchemaChange + /// interfaceName + /// severity /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment InterfaceImplementationRemoved on InterfaceImplementationRemoved { + /// ... SchemaChange + /// interfaceName + /// severity + /// } + /// + /// fragment DescriptionChanged on DescriptionChanged { + /// ... SchemaChange + /// old + /// new + /// severity /// __typename - /// message - /// apiId - /// ... Error /// } /// - /// fragment Error on Error { - /// message + /// fragment FieldAddedChange on FieldAddedChange { + /// ... SchemaChange + /// coordinate + /// typeName + /// fieldName + /// severity /// } /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { - /// __typename - /// message - /// name - /// ... Error + /// fragment FieldRemovedChange on FieldRemovedChange { + /// ... SchemaChange + /// coordinate + /// typeName + /// fieldName + /// severity /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateMockSchemaMutation : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.Upload baseSchemaFile, global::System.String downstreamUrl, global::StrawberryShake.Upload extensionsSchemaFile, global::System.String name, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the ListMockCommandQuery GraphQL operation - /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int - /// ) { - /// apiById(id: $apiId) { + /// + /// fragment OutputFieldChanged on OutputFieldChanged { + /// ... SchemaChange + /// coordinate + /// severity + /// fieldName + /// changes { /// __typename - /// mockSchemas(after: $after, first: $first) { - /// __typename - /// edges { - /// __typename - /// ... ListMockCommand_MockEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } - /// } + /// ... ArgumentRemoved + /// ... ArgumentAdded + /// ... ArgumentChanged + /// ... DescriptionChanged + /// ... TypeChanged + /// ... DeprecatedChange /// } /// } /// - /// fragment ListMockCommand_MockEdge on MockSchemasEdge { - /// cursor - /// node { - /// __typename - /// ... ListMockCommand_Mock - /// } + /// fragment ArgumentRemoved on ArgumentRemoved { + /// ... SchemaChange + /// coordinate + /// severity + /// name + /// typeName + /// __typename /// } /// - /// fragment ListMockCommand_Mock on MockSchema { - /// id + /// fragment ArgumentAdded on ArgumentAdded { + /// ... SchemaChange + /// coordinate + /// severity /// name - /// ... MockSchemaDetailPrompt + /// typeName + /// __typename /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { - /// id + /// fragment ArgumentChanged on ArgumentChanged { + /// ... SchemaChange + /// coordinate + /// severity /// name - /// createdAt - /// createdBy { + /// __typename + /// changes { /// __typename - /// username + /// ... DescriptionChanged + /// ... DeprecatedChange + /// ... TypeChanged /// } - /// modifiedAt - /// modifiedBy { + /// } + /// + /// 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 - /// username + /// ... DescriptionChanged + /// ... FieldAddedChange + /// ... FieldRemovedChange + /// ... InputFieldChanged /// } - /// downstreamUrl - /// url /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryQueryDocument : global::StrawberryShake.IDocument - { - private ListMockCommandQueryQueryDocument() + /// 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 + /// openApiCollection { + /// __typename + /// id + /// name + /// } + /// entities { + /// __typename + /// errors { + /// __typename + /// ... OpenApiCollectionValidationDocumentError + /// ... OpenApiCollectionValidationEntityValidationError + /// } + /// ... on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// ... on OpenApiCollectionValidationModel { + /// name + /// } + /// } + /// } + /// } + /// + /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { + /// code + /// message + /// path + /// locations { + /// __typename + /// column + /// line + /// } + /// } + /// + /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { + /// message + /// } + /// + /// fragment ProcessingTaskApproved on ProcessingTaskApproved { + /// state + /// } + /// + /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { + /// ready: __typename + /// } + /// + /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { + /// queued: __typename + /// queuePosition + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishMcpFeatureCollectionCommandSubscriptionSubscription : global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - public static ListMockCommandQueryQueryDocument Instance { get; } = new ListMockCommandQueryQueryDocument(); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishMcpFeatureCollectionCommandSubscriptionResult); + + public global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(requestId); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String requestId) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("requestId", FormatRequestId(requestId)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatRequestId(global::System.String value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _iDFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the PublishMcpFeatureCollectionCommandSubscription GraphQL operation + /// + /// 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 + /// mcpFeatureCollection { + /// __typename + /// id + /// name + /// } + /// entities { + /// __typename + /// errors { + /// __typename + /// ... McpFeatureCollectionValidationDocumentError + /// ... McpFeatureCollectionValidationEntityValidationError + /// } + /// ... on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// ... on McpFeatureCollectionValidationTool { + /// name + /// } + /// } + /// } + /// } + /// + /// fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { + /// code + /// message + /// path + /// locations { + /// __typename + /// column + /// line + /// } + /// } + /// + /// fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { + /// message + /// } + /// + /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { + /// state + /// } + /// + /// fragment OperationInProgress on OperationInProgress { + /// state + /// } + /// + /// fragment WaitForApproval on WaitForApproval { + /// state + /// deployment { + /// __typename + /// ... on SchemaDeployment { + /// errors { + /// __typename + /// ... OperationsAreNotAllowedError + /// ... SchemaVersionSyntaxError + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } + /// } + /// ... on ClientDeployment { + /// errors { + /// __typename + /// ... PersistedQueryValidationError + /// } + /// } + /// ... on FusionConfigurationDeployment { + /// errors { + /// __typename + /// ... SchemaChangeViolationError + /// ... InvalidGraphQLSchemaError + /// ... PersistedQueryValidationError + /// ... OpenApiCollectionValidationError + /// ... McpFeatureCollectionValidationError + /// } + /// } + /// ... on OpenApiCollectionDeployment { + /// errors { + /// __typename + /// ... OpenApiCollectionValidationError + /// } + /// } + /// ... on McpFeatureCollectionDeployment { + /// errors { + /// __typename + /// ... 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 + /// openApiCollection { + /// __typename + /// id + /// name + /// } + /// entities { + /// __typename + /// errors { + /// __typename + /// ... OpenApiCollectionValidationDocumentError + /// ... OpenApiCollectionValidationEntityValidationError + /// } + /// ... on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// ... on OpenApiCollectionValidationModel { + /// name + /// } + /// } + /// } + /// } + /// + /// fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { + /// code + /// message + /// path + /// locations { + /// __typename + /// column + /// line + /// } + /// } + /// + /// fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { + /// message + /// } + /// + /// fragment ProcessingTaskApproved on ProcessingTaskApproved { + /// state + /// } + /// + /// fragment ProcessingTaskIsReady on ProcessingTaskIsReady { + /// ready: __typename + /// } + /// + /// fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { + /// queued: __typename + /// queuePosition + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishMcpFeatureCollectionCommandSubscriptionSubscription : global::StrawberryShake.IOperationRequestFactory + { + global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListPersonalAccessTokenCommandQueryQueryDocument : global::StrawberryShake.IDocument + { + private ListPersonalAccessTokenCommandQueryQueryDocument() + { + } + + public static ListPersonalAccessTokenCommandQueryQueryDocument Instance { get; } = new ListPersonalAccessTokenCommandQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1b7ebd5e95b4f31767e0271f30d34242"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8403a76012480cacf4ff791dfdf9ab03"); public override global::System.String ToString() { @@ -154065,20 +157457,19 @@ private ListMockCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListMockCommandQuery GraphQL operation + /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String + /// query ListPersonalAccessTokenCommandQuery( + /// $after: String /// $first: Int /// ) { - /// apiById(id: $apiId) { + /// me { /// __typename - /// mockSchemas(after: $after, first: $first) { + /// personalAccessTokens(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListMockCommand_MockEdge + /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge /// } /// pageInfo { /// __typename @@ -154088,35 +157479,27 @@ private ListMockCommandQueryQueryDocument() /// } /// } /// - /// fragment ListMockCommand_MockEdge on MockSchemasEdge { + /// fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { /// cursor /// node { /// __typename - /// ... ListMockCommand_Mock + /// ... ListPersonalAccessTokenCommand_PersonalAccessToken /// } /// } /// - /// fragment ListMockCommand_Mock on MockSchema { + /// fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id - /// name - /// ... MockSchemaDetailPrompt + /// description + /// expiresAt + /// createdAt + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { /// id - /// name + /// description /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// expiresAt /// } /// /// fragment PageInfo on PageInfo { @@ -154128,50 +157511,47 @@ private ListMockCommandQueryQueryDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery + public partial class ListPersonalAccessTokenCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListMockCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListPersonalAccessTokenCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListMockCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ListPersonalAccessTokenCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(after, first); foreach (var configure in _configure) { configure(request); @@ -154180,16 +157560,15 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(after, first); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); variables.Add("after", FormatAfter(after)); variables.Add("first", FormatFirst(first)); return CreateRequest(variables); @@ -154197,17 +157576,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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatApiId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); + 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) @@ -154242,20 +157611,19 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the ListMockCommandQuery GraphQL operation + /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation /// - /// query ListMockCommandQuery( - /// $apiId: ID! - /// $after: String + /// query ListPersonalAccessTokenCommandQuery( + /// $after: String /// $first: Int /// ) { - /// apiById(id: $apiId) { + /// me { /// __typename - /// mockSchemas(after: $after, first: $first) { + /// personalAccessTokens(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... ListMockCommand_MockEdge + /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge /// } /// pageInfo { /// __typename @@ -154265,35 +157633,27 @@ private ListMockCommandQueryQuery(global::StrawberryShake.IOperationExecutor /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IListPersonalAccessTokenCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the UpdateMockSchema GraphQL operation + /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation UpdateMockSchema( - /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createPersonalAccessToken(input: $input) { /// __typename - /// mockSchema { + /// result { /// __typename - /// id - /// ... MockSchemaDetailPrompt + /// token { + /// __typename + /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// } + /// secret /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError + /// ... UnauthorizedOperation + /// ... Error /// } /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { + /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// name + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// } + /// + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// id + /// description /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// expiresAt /// } /// - /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message /// ... Error @@ -154366,26 +157720,19 @@ public partial interface IListMockCommandQueryQuery : global::StrawberryShake.IO /// fragment Error on Error { /// message /// } - /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { - /// __typename - /// message - /// name - /// ... Error - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaMutationDocument : global::StrawberryShake.IDocument + public partial class CreatePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private UpdateMockSchemaMutationDocument() + private CreatePersonalAccessTokenCommandMutationMutationDocument() { } - public static UpdateMockSchemaMutationDocument Instance { get; } = new UpdateMockSchemaMutationDocument(); + public static CreatePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new CreatePersonalAccessTokenCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b111cbd352fbdf127d499cd8d4f84433"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "46cc5ecdb98af795749ecb6f2d419092"); public override global::System.String ToString() { @@ -154399,48 +157746,42 @@ private UpdateMockSchemaMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the UpdateMockSchema GraphQL operation + /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation UpdateMockSchema( - /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createPersonalAccessToken(input: $input) { /// __typename - /// mockSchema { + /// result { /// __typename - /// id - /// ... MockSchemaDetailPrompt + /// token { + /// __typename + /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// } + /// secret /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError + /// ... UnauthorizedOperation + /// ... Error /// } /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { + /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// name + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// } + /// + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// id + /// description /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// expiresAt /// } /// - /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message /// ... Error @@ -154449,60 +157790,47 @@ private UpdateMockSchemaMutationDocument() /// fragment Error on Error { /// message /// } - /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { - /// __typename - /// message - /// name - /// ... Error - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation + public partial class CreatePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createPersonalAccessTokenInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _uploadFormatter = serializerResolver.GetInputValueFormatter("Upload"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _createPersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("CreatePersonalAccessTokenInput"); } - private UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createPersonalAccessTokenInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _uploadFormatter = uploadFormatter; - _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; + _createPersonalAccessTokenInputFormatter = createPersonalAccessTokenInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUpdateMockSchemaResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreatePersonalAccessTokenCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchemaMutation(_operationExecutor, _configure.Add(configure), _uploadFormatter, _stringFormatter, _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createPersonalAccessTokenInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(mockSchemaId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -154511,149 +157839,78 @@ private UpdateMockSchemaMutation(global::StrawberryShake.IOperationExecutor files) - { - files.Add(path, value is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path, global::StrawberryShake.Upload? value, global::System.Collections.Generic.Dictionary files) - { - files.Add(path, value is global::StrawberryShake.Upload u ? u : null); - } - - public global::System.IObservable> Watch(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(mockSchemaId, baseSchemaFile, downstreamUrl, extensionsSchemaFile, name); + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("mockSchemaId", FormatMockSchemaId(mockSchemaId)); - variables.Add("baseSchemaFile", FormatBaseSchemaFile(baseSchemaFile)); - variables.Add("downstreamUrl", FormatDownstreamUrl(downstreamUrl)); - variables.Add("extensionsSchemaFile", FormatExtensionsSchemaFile(extensionsSchemaFile)); - variables.Add("name", FormatName(name)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentBaseSchemaFile("variables.baseSchemaFile", baseSchemaFile, files); - MapFilesFromArgumentExtensionsSchemaFile("variables.extensionsSchemaFile", extensionsSchemaFile, files); - return CreateRequest(variables, files); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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); + 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? FormatMockSchemaId(global::System.String value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatBaseSchemaFile(global::StrawberryShake.Upload? value) - { - if (value is null) - { - return value; - } - else - { - return _uploadFormatter.Format(value); - } - } - - private global::System.Object? FormatDownstreamUrl(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _stringFormatter.Format(value); - } - } - - private global::System.Object? FormatExtensionsSchemaFile(global::StrawberryShake.Upload? value) - { - if (value is null) - { - return value; - } - else - { - return _uploadFormatter.Format(value); - } - } - - private global::System.Object? FormatName(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _stringFormatter.Format(value); - } + return _createPersonalAccessTokenInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); + return CreateRequest(variables!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the UpdateMockSchema GraphQL operation + /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation UpdateMockSchema( - /// $mockSchemaId: ID! - /// $baseSchemaFile: Upload - /// $downstreamUrl: String - /// $extensionsSchemaFile: Upload - /// $name: String + /// mutation CreatePersonalAccessTokenCommandMutation( + /// $input: CreatePersonalAccessTokenInput! /// ) { - /// updateMockSchema(input: { id: $mockSchemaId, baseSchemaFile: $baseSchemaFile, downstreamUrl: $downstreamUrl, extensionsSchemaFile: $extensionsSchemaFile, name: $name }) { + /// createPersonalAccessToken(input: $input) { /// __typename - /// mockSchema { + /// result { /// __typename - /// id - /// ... MockSchemaDetailPrompt + /// token { + /// __typename + /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken + /// } + /// secret /// } /// errors { /// __typename - /// ... MockSchemaNotFoundError - /// ... MockSchemaNonUniqueNameError + /// ... UnauthorizedOperation + /// ... Error /// } /// } /// } /// - /// fragment MockSchemaDetailPrompt on MockSchema { + /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { /// id - /// name + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// } + /// + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// id + /// description /// createdAt - /// createdBy { - /// __typename - /// username - /// } - /// modifiedAt - /// modifiedBy { - /// __typename - /// username - /// } - /// downstreamUrl - /// url + /// expiresAt /// } /// - /// fragment MockSchemaNotFoundError on MockSchemaNotFoundError { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message /// ... Error @@ -154662,87 +157919,74 @@ private void MapFilesFromArgumentExtensionsSchemaFile(global::System.String path /// fragment Error on Error { /// message /// } - /// - /// fragment MockSchemaNonUniqueNameError on MockSchemaNonUniqueNameError { - /// __typename - /// message - /// name - /// ... Error - /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateMockSchemaMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreatePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String mockSchemaId, global::StrawberryShake.Upload? baseSchemaFile, global::System.String? downstreamUrl, global::StrawberryShake.Upload? extensionsSchemaFile, global::System.String? name, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation + /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation( - /// $input: CreateOpenApiCollectionInput! + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! /// ) { - /// createOpenApiCollection(input: $input) { + /// revokePersonalAccessToken(input: $input) { /// __typename - /// openApiCollection { + /// personalAccessToken { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename + /// ... PersonalAccessTokenNotFoundError /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { - /// name + /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// description + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { /// id - /// name - /// } - /// - /// fragment Error on Error { - /// message + /// description + /// createdAt + /// expiresAt /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// apiId /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename + /// fragment Error on Error { /// message - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class RevokePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private CreateOpenApiCollectionCommandMutationMutationDocument() + private RevokePersonalAccessTokenCommandMutationMutationDocument() { } - public static CreateOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new CreateOpenApiCollectionCommandMutationMutationDocument(); + public static RevokePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new RevokePersonalAccessTokenCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5758d2edb80ceb1aa05694485dfdaeed"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "147298b7a2e237b07f06e5a7c2b1ef84"); public override global::System.String ToString() { @@ -154756,92 +158000,86 @@ private CreateOpenApiCollectionCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation + /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation( - /// $input: CreateOpenApiCollectionInput! + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! /// ) { - /// createOpenApiCollection(input: $input) { + /// revokePersonalAccessToken(input: $input) { /// __typename - /// openApiCollection { + /// personalAccessToken { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename + /// ... PersonalAccessTokenNotFoundError /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { - /// name + /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// description + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { /// id - /// name - /// } - /// - /// fragment Error on Error { - /// message + /// description + /// createdAt + /// expiresAt /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// apiId /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename + /// fragment Error on Error { /// message - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation + public partial class RevokePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createOpenApiCollectionInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _revokePersonalAccessTokenInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("CreateOpenApiCollectionInput"); + _revokePersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("RevokePersonalAccessTokenInput"); } - private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createOpenApiCollectionInputFormatter) + private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter revokePersonalAccessTokenInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _createOpenApiCollectionInputFormatter = createOpenApiCollectionInputFormatter; + _revokePersonalAccessTokenInputFormatter = revokePersonalAccessTokenInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateOpenApiCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IRevokePersonalAccessTokenCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createOpenApiCollectionInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutationMutation(_operationExecutor, _configure.Add(configure), _revokePersonalAccessTokenInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -154852,13 +158090,13 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -154867,17 +158105,17 @@ 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.PersistedOperation, 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.CommandLine.Client.CreateOpenApiCollectionInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createOpenApiCollectionInputFormatter.Format(value); + return _revokePersonalAccessTokenInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -154888,96 +158126,88 @@ private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.I // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation + /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation /// - /// mutation CreateOpenApiCollectionCommandMutation( - /// $input: CreateOpenApiCollectionInput! + /// mutation RevokePersonalAccessTokenCommandMutation( + /// $input: RevokePersonalAccessTokenInput! /// ) { - /// createOpenApiCollection(input: $input) { + /// revokePersonalAccessToken(input: $input) { /// __typename - /// openApiCollection { + /// personalAccessToken { /// __typename - /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection + /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken /// } /// errors { /// __typename + /// ... PersonalAccessTokenNotFoundError /// ... Error - /// ... ApiNotFoundError - /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { - /// name + /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// description + /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { /// id - /// name - /// } - /// - /// fragment Error on Error { - /// message + /// description + /// createdAt + /// expiresAt /// } /// - /// fragment ApiNotFoundError on ApiNotFoundError { + /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { /// __typename /// message - /// apiId /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename + /// fragment Error on Error { /// message - /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IRevokePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation( - /// $input: DeleteOpenApiCollectionByIdInput! + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! /// ) { - /// deleteOpenApiCollectionById(input: $input) { + /// uploadOpenApiCollection(input: $input) { /// __typename - /// openApiCollection { + /// openApiCollectionVersion { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// id /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError /// ... UnauthorizedOperation + /// ... OpenApiCollectionNotFoundError + /// ... InvalidOpenApiCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error /// } /// } /// } /// - /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { - /// name - /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection - /// } - /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { - /// id - /// name + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// fragment Error on Error { @@ -154989,7 +158219,17 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { + /// message + /// } + /// + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -154997,16 +158237,16 @@ public partial interface ICreateOpenApiCollectionCommandMutationMutation : globa /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class UploadOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() + private UploadOpenApiCollectionCommandMutationMutationDocument() { } - public static DeleteOpenApiCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteOpenApiCollectionByIdCommandMutationMutationDocument(); + public static UploadOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new UploadOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "e7828352aef7a0d78376c52b11a5f54e"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7fec40ddb8a7c93a69817de82959f38a"); public override global::System.String ToString() { @@ -155020,35 +158260,33 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation( - /// $input: DeleteOpenApiCollectionByIdInput! + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! /// ) { - /// deleteOpenApiCollectionById(input: $input) { + /// uploadOpenApiCollection(input: $input) { /// __typename - /// openApiCollection { + /// openApiCollectionVersion { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// id /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError /// ... UnauthorizedOperation + /// ... OpenApiCollectionNotFoundError + /// ... InvalidOpenApiCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error /// } /// } /// } /// - /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { - /// name - /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection - /// } - /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { - /// id - /// name + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// fragment Error on Error { @@ -155060,7 +158298,17 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { + /// message + /// } + /// + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -155068,42 +158316,42 @@ private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation + public partial class UploadOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteOpenApiCollectionByIdInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadOpenApiCollectionInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UploadOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _deleteOpenApiCollectionByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteOpenApiCollectionByIdInput"); + _uploadOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("UploadOpenApiCollectionInput"); } - private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteOpenApiCollectionByIdInputFormatter) + private UploadOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _deleteOpenApiCollectionByIdInputFormatter = deleteOpenApiCollectionByIdInputFormatter; + _uploadOpenApiCollectionInputFormatter = uploadOpenApiCollectionInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteOpenApiCollectionByIdCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadOpenApiCollectionCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteOpenApiCollectionByIdInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _uploadOpenApiCollectionInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -155114,71 +158362,86 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromTypeUploadOpenApiCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + var pathCollection = path + ".collection"; + var valueCollection = value.Collection; + files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeUploadOpenApiCollectionInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); - return CreateRequest(variables); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance.Hash.Value, name: "DeleteOpenApiCollectionByIdCommandMutation", document: DeleteOpenApiCollectionByIdCommandMutationMutationDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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.CommandLine.Client.DeleteOpenApiCollectionByIdInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _deleteOpenApiCollectionByIdInputFormatter.Format(value); + return _uploadOpenApiCollectionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation + /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation DeleteOpenApiCollectionByIdCommandMutation( - /// $input: DeleteOpenApiCollectionByIdInput! + /// mutation UploadOpenApiCollectionCommandMutation( + /// $input: UploadOpenApiCollectionInput! /// ) { - /// deleteOpenApiCollectionById(input: $input) { + /// uploadOpenApiCollection(input: $input) { /// __typename - /// openApiCollection { + /// openApiCollectionVersion { /// __typename - /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// id /// } /// errors { /// __typename - /// ... Error - /// ... OpenApiCollectionNotFoundError /// ... UnauthorizedOperation + /// ... OpenApiCollectionNotFoundError + /// ... InvalidOpenApiCollectionArchiveError + /// ... DuplicatedTagError + /// ... ConcurrentOperationError + /// ... Error /// } /// } /// } /// - /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { - /// name - /// id - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection - /// } - /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { - /// id - /// name + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// fragment Error on Error { @@ -155190,7 +158453,17 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// ... Error /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment InvalidOpenApiCollectionArchiveError on InvalidOpenApiCollectionArchiveError { + /// message + /// } + /// + /// fragment DuplicatedTagError on DuplicatedTagError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment ConcurrentOperationError on ConcurrentOperationError { /// __typename /// message /// ... Error @@ -155198,13 +158471,13 @@ private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberrySha /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IUploadOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator @@ -157544,307 +160817,6 @@ public partial interface IPublishOpenApiCollectionCommandSubscriptionSubscriptio global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation - /// - /// mutation UploadOpenApiCollectionCommandMutation( - /// $input: UploadOpenApiCollectionInput! - /// ) { - /// uploadOpenApiCollection(input: $input) { - /// __typename - /// openApiCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument - { - private UploadOpenApiCollectionCommandMutationMutationDocument() - { - } - - public static UploadOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new UploadOpenApiCollectionCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "7fec40ddb8a7c93a69817de82959f38a"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation - /// - /// mutation UploadOpenApiCollectionCommandMutation( - /// $input: UploadOpenApiCollectionInput! - /// ) { - /// uploadOpenApiCollection(input: $input) { - /// __typename - /// openApiCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _uploadOpenApiCollectionInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UploadOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _uploadOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("UploadOpenApiCollectionInput"); - } - - private UploadOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter uploadOpenApiCollectionInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _uploadOpenApiCollectionInputFormatter = uploadOpenApiCollectionInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUploadOpenApiCollectionCommandMutationResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _uploadOpenApiCollectionInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - private void MapFilesFromTypeUploadOpenApiCollectionInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value, global::System.Collections.Generic.Dictionary files) - { - var pathCollection = path + ".collection"; - var valueCollection = value.Collection; - files.Add(pathCollection, valueCollection is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value, global::System.Collections.Generic.Dictionary files) - { - if (value is { } value_i) - { - MapFilesFromTypeUploadOpenApiCollectionInput(path, value_i, files); - } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); - } - - 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.PersistedOperation, files: files, variables: variables); - } - - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _uploadOpenApiCollectionInputFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the UploadOpenApiCollectionCommandMutation GraphQL operation - /// - /// mutation UploadOpenApiCollectionCommandMutation( - /// $input: UploadOpenApiCollectionInput! - /// ) { - /// uploadOpenApiCollection(input: $input) { - /// __typename - /// openApiCollectionVersion { - /// __typename - /// id - /// } - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... OpenApiCollectionNotFoundError - /// ... InvalidOpenApiCollectionArchiveError - /// ... DuplicatedTagError - /// ... ConcurrentOperationError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUploadOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the ValidateOpenApiCollectionCommandMutation GraphQL operation @@ -158466,63 +161438,66 @@ public partial interface IValidateOpenApiCollectionCommandSubscriptionSubscripti // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation( - /// $input: CreatePersonalAccessTokenInput! + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! /// ) { - /// createPersonalAccessToken(input: $input) { + /// createOpenApiCollection(input: $input) { /// __typename - /// result { + /// openApiCollection { /// __typename - /// token { - /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken - /// } - /// secret + /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... UnauthorizedOperation /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { + /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { + /// name /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// createdAt - /// expiresAt + /// name /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class CreateOpenApiCollectionCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private CreatePersonalAccessTokenCommandMutationMutationDocument() + private CreateOpenApiCollectionCommandMutationMutationDocument() { } - public static CreatePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new CreatePersonalAccessTokenCommandMutationMutationDocument(); + public static CreateOpenApiCollectionCommandMutationMutationDocument Instance { get; } = new CreateOpenApiCollectionCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "46cc5ecdb98af795749ecb6f2d419092"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "5758d2edb80ceb1aa05694485dfdaeed"); public override global::System.String ToString() { @@ -158536,89 +161511,92 @@ private CreatePersonalAccessTokenCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation( - /// $input: CreatePersonalAccessTokenInput! + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! /// ) { - /// createPersonalAccessToken(input: $input) { + /// createOpenApiCollection(input: $input) { /// __typename - /// result { + /// openApiCollection { /// __typename - /// token { - /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken - /// } - /// secret + /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... UnauthorizedOperation /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { + /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { + /// name /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// createdAt - /// expiresAt + /// name /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation + public partial class CreateOpenApiCollectionCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createPersonalAccessTokenInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createOpenApiCollectionInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createPersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("CreatePersonalAccessTokenInput"); + _createOpenApiCollectionInputFormatter = serializerResolver.GetInputValueFormatter("CreateOpenApiCollectionInput"); } - private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createPersonalAccessTokenInputFormatter) + private CreateOpenApiCollectionCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createOpenApiCollectionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _createPersonalAccessTokenInputFormatter = createPersonalAccessTokenInputFormatter; + _createOpenApiCollectionInputFormatter = createOpenApiCollectionInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreatePersonalAccessTokenCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateOpenApiCollectionCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createPersonalAccessTokenInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createOpenApiCollectionInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -158629,13 +161607,13 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -158644,17 +161622,17 @@ 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.PersistedOperation, 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.CommandLine.Client.CreatePersonalAccessTokenInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createPersonalAccessTokenInputFormatter.Format(value); + return _createOpenApiCollectionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -158665,128 +161643,125 @@ private CreatePersonalAccessTokenCommandMutationMutation(global::StrawberryShake // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreatePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the CreateOpenApiCollectionCommandMutation GraphQL operation /// - /// mutation CreatePersonalAccessTokenCommandMutation( - /// $input: CreatePersonalAccessTokenInput! + /// mutation CreateOpenApiCollectionCommandMutation( + /// $input: CreateOpenApiCollectionInput! /// ) { - /// createPersonalAccessToken(input: $input) { + /// createOpenApiCollection(input: $input) { /// __typename - /// result { + /// openApiCollection { /// __typename - /// token { - /// __typename - /// ... CreatePersonalAccessTokenCommandMutation_PersonalAccessToken - /// } - /// secret + /// ... CreateOpenApiCollectionCommandMutation_OpenApiCollection /// } /// errors { /// __typename - /// ... UnauthorizedOperation /// ... Error + /// ... ApiNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment CreatePersonalAccessTokenCommandMutation_PersonalAccessToken on PersonalAccessToken { + /// fragment CreateOpenApiCollectionCommandMutation_OpenApiCollection on OpenApiCollection { + /// name /// id - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// createdAt - /// expiresAt + /// name /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { /// __typename /// message + /// apiId /// ... Error /// } /// - /// fragment Error on Error { + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreatePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateOpenApiCollectionCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation + /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! /// ) { - /// me { + /// deleteOpenApiCollectionById(input: $input) { /// __typename - /// personalAccessTokens(after: $after, first: $first) { + /// openApiCollection { /// __typename - /// edges { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... OpenApiCollectionNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { - /// cursor - /// node { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken - /// } + /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { + /// name + /// id + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// expiresAt - /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// name /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// createdAt - /// expiresAt + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { + /// openApiCollectionId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class DeleteOpenApiCollectionByIdCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private ListPersonalAccessTokenCommandQueryQueryDocument() + private DeleteOpenApiCollectionByIdCommandMutationMutationDocument() { } - public static ListPersonalAccessTokenCommandQueryQueryDocument Instance { get; } = new ListPersonalAccessTokenCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static DeleteOpenApiCollectionByIdCommandMutationMutationDocument Instance { get; } = new DeleteOpenApiCollectionByIdCommandMutationMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8403a76012480cacf4ff791dfdf9ab03"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "e7828352aef7a0d78376c52b11a5f54e"); public override global::System.String ToString() { @@ -158800,101 +161775,92 @@ private ListPersonalAccessTokenCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation + /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! /// ) { - /// me { + /// deleteOpenApiCollectionById(input: $input) { /// __typename - /// personalAccessTokens(after: $after, first: $first) { + /// openApiCollection { /// __typename - /// edges { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... OpenApiCollectionNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { - /// cursor - /// node { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken - /// } + /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { + /// name + /// id + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// expiresAt - /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// name /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// createdAt - /// expiresAt + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { + /// openApiCollectionId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery + public partial class DeleteOpenApiCollectionByIdCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _deleteOpenApiCollectionByIdInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + _deleteOpenApiCollectionByIdInputFormatter = serializerResolver.GetInputValueFormatter("DeleteOpenApiCollectionByIdInput"); } - private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private DeleteOpenApiCollectionByIdCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter deleteOpenApiCollectionByIdInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _stringFormatter = @stringFormatter; - _intFormatter = @intFormatter; + _deleteOpenApiCollectionByIdInputFormatter = deleteOpenApiCollectionByIdInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListPersonalAccessTokenCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IDeleteOpenApiCollectionByIdCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListPersonalAccessTokenCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutationMutation(_operationExecutor, _configure.Add(configure), _deleteOpenApiCollectionByIdInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(after, first); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -158903,47 +161869,32 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(after, first); + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); + variables.Add("input", FormatInput(input)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatAfter(global::System.String? value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput value) { if (value is null) { - return value; - } - else - { - return _stringFormatter.Format(value); + throw new global::System.ArgumentNullException(nameof(value)); } - } - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } + return _deleteOpenApiCollectionByIdInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -158954,125 +161905,94 @@ private ListPersonalAccessTokenCommandQueryQuery(global::StrawberryShake.IOperat // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListPersonalAccessTokenCommandQuery GraphQL operation + /// Represents the operation service of the DeleteOpenApiCollectionByIdCommandMutation GraphQL operation /// - /// query ListPersonalAccessTokenCommandQuery( - /// $after: String - /// $first: Int + /// mutation DeleteOpenApiCollectionByIdCommandMutation( + /// $input: DeleteOpenApiCollectionByIdInput! /// ) { - /// me { + /// deleteOpenApiCollectionById(input: $input) { /// __typename - /// personalAccessTokens(after: $after, first: $first) { + /// openApiCollection { /// __typename - /// edges { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessTokenEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection + /// } + /// errors { + /// __typename + /// ... Error + /// ... OpenApiCollectionNotFoundError + /// ... UnauthorizedOperation /// } /// } /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessTokenEdge on PersonalAccessTokensEdge { - /// cursor - /// node { - /// __typename - /// ... ListPersonalAccessTokenCommand_PersonalAccessToken - /// } + /// fragment DeleteOpenApiCollectionByIdCommandMutation_OpenApiCollection on OpenApiCollection { + /// name + /// id + /// ... OpenApiCollectionDetailPrompt_OpenApiCollection /// } /// - /// fragment ListPersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { + /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { /// id - /// description - /// expiresAt - /// createdAt - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken + /// name /// } /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// createdAt - /// expiresAt + /// fragment Error on Error { + /// message /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { + /// openApiCollectionId + /// ... Error + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListPersonalAccessTokenCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IDeleteOpenApiCollectionByIdCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation( - /// $input: RevokePersonalAccessTokenInput! + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! /// ) { - /// revokePersonalAccessToken(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// personalAccessToken { - /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken - /// } - /// errors { - /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error - /// } + /// ... WorkspaceDetailPrompt_Workspace /// } /// } /// - /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken - /// } - /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { /// id - /// description - /// createdAt - /// expiresAt - /// } - /// - /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message + /// name + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class ShowWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument { - private RevokePersonalAccessTokenCommandMutationMutationDocument() + private ShowWorkspaceCommandQueryQueryDocument() { } - public static RevokePersonalAccessTokenCommandMutationMutationDocument Instance { get; } = new RevokePersonalAccessTokenCommandMutationMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public static ShowWorkspaceCommandQueryQueryDocument Instance { get; } = new ShowWorkspaceCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "147298b7a2e237b07f06e5a7c2b1ef84"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c46bc0ec07d6718f937f666a59f957b0"); public override global::System.String ToString() { @@ -159086,88 +162006,63 @@ private RevokePersonalAccessTokenCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation( - /// $input: RevokePersonalAccessTokenInput! + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! /// ) { - /// revokePersonalAccessToken(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// personalAccessToken { - /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken - /// } - /// errors { - /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error - /// } + /// ... WorkspaceDetailPrompt_Workspace /// } /// } /// - /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken - /// } - /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { /// id - /// description - /// createdAt - /// expiresAt - /// } - /// - /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message + /// name + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation + public partial class ShowWorkspaceCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _revokePersonalAccessTokenInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _revokePersonalAccessTokenInputFormatter = serializerResolver.GetInputValueFormatter("RevokePersonalAccessTokenInput"); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); } - private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter revokePersonalAccessTokenInputFormatter) + private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _revokePersonalAccessTokenInputFormatter = revokePersonalAccessTokenInputFormatter; + _iDFormatter = iDFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IRevokePersonalAccessTokenCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowWorkspaceCommandQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutationMutation(_operationExecutor, _configure.Add(configure), _revokePersonalAccessTokenInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId); foreach (var configure in _configure) { configure(request); @@ -159176,32 +162071,32 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(input); + var request = CreateRequest(workspaceId); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput value) + private global::System.Object? FormatWorkspaceId(global::System.String value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _revokePersonalAccessTokenInputFormatter.Format(value); + return _iDFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -159212,123 +162107,82 @@ private RevokePersonalAccessTokenCommandMutationMutation(global::StrawberryShake // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the RevokePersonalAccessTokenCommandMutation GraphQL operation + /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation /// - /// mutation RevokePersonalAccessTokenCommandMutation( - /// $input: RevokePersonalAccessTokenInput! + /// query ShowWorkspaceCommandQuery( + /// $workspaceId: ID! /// ) { - /// revokePersonalAccessToken(input: $input) { + /// node(id: $workspaceId) { /// __typename - /// personalAccessToken { - /// __typename - /// ... RevokePersonalAccessTokenCommand_PersonalAccessToken - /// } - /// errors { - /// __typename - /// ... PersonalAccessTokenNotFoundError - /// ... Error - /// } + /// ... WorkspaceDetailPrompt_Workspace /// } /// } /// - /// fragment RevokePersonalAccessTokenCommand_PersonalAccessToken on PersonalAccessToken { - /// id - /// description - /// ... PersonalAccessTokenDetailPrompt_PersonalAccessToken - /// } - /// - /// fragment PersonalAccessTokenDetailPrompt_PersonalAccessToken on PersonalAccessToken { + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { /// id - /// description - /// createdAt - /// expiresAt - /// } - /// - /// fragment PersonalAccessTokenNotFoundError on PersonalAccessTokenNotFoundError { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message + /// name + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IRevokePersonalAccessTokenCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! /// ) { - /// publishSchema(input: $input) { + /// createWorkspace(input: $input) { /// __typename - /// id + /// workspace { + /// __typename + /// id + /// name + /// ... WorkspaceDetailPrompt_Workspace + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ... on UnauthorizedOperation { + /// message + /// } + /// ... on ValidationError { + /// message + /// } + /// ... on Error { + /// message + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename - /// message - /// apiId - /// ... Error - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { + /// id /// name - /// ... Error - /// } - /// - /// fragment SchemaNotFoundError on SchemaNotFoundError { - /// message - /// apiId - /// tag - /// ... Error + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionMutationDocument : global::StrawberryShake.IDocument + public partial class CreateWorkspaceCommandMutationMutationDocument : global::StrawberryShake.IDocument { - private PublishSchemaVersionMutationDocument() + private CreateWorkspaceCommandMutationMutationDocument() { } - public static PublishSchemaVersionMutationDocument Instance { get; } = new PublishSchemaVersionMutationDocument(); + public static CreateWorkspaceCommandMutationMutationDocument Instance { get; } = new CreateWorkspaceCommandMutationMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d38a43a7b864ae9c3d787807b5f5f460"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c8d21a0bb621a01952ffb6224bbbfe0d"); public override global::System.String ToString() { @@ -159342,94 +162196,78 @@ private PublishSchemaVersionMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! /// ) { - /// publishSchema(input: $input) { + /// createWorkspace(input: $input) { /// __typename - /// id + /// workspace { + /// __typename + /// id + /// name + /// ... WorkspaceDetailPrompt_Workspace + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ... on UnauthorizedOperation { + /// message + /// } + /// ... on ValidationError { + /// message + /// } + /// ... on Error { + /// message + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename - /// message - /// apiId - /// ... Error - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { + /// id /// name - /// ... Error - /// } - /// - /// fragment SchemaNotFoundError on SchemaNotFoundError { - /// message - /// apiId - /// tag - /// ... Error + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation + public partial class CreateWorkspaceCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishSchemaInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createWorkspaceInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _publishSchemaInputFormatter = serializerResolver.GetInputValueFormatter("PublishSchemaInput"); + _createWorkspaceInputFormatter = serializerResolver.GetInputValueFormatter("CreateWorkspaceInput"); } - private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishSchemaInputFormatter) + private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createWorkspaceInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _publishSchemaInputFormatter = publishSchemaInputFormatter; + _createWorkspaceInputFormatter = createWorkspaceInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishSchemaVersionResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateWorkspaceCommandMutationResult); - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersionMutation(_operationExecutor, _configure.Add(configure), _publishSchemaInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createWorkspaceInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -159440,13 +162278,13 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -159455,17 +162293,17 @@ 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.PersistedOperation, 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.CommandLine.Client.PublishSchemaInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _publishSchemaInputFormatter.Format(value); + return _createWorkspaceInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -159476,147 +162314,950 @@ private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor< // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation /// - /// mutation PublishSchemaVersion( - /// $input: PublishSchemaInput! + /// mutation CreateWorkspaceCommandMutation( + /// $input: CreateWorkspaceInput! /// ) { - /// publishSchema(input: $input) { + /// createWorkspace(input: $input) { /// __typename - /// id + /// workspace { + /// __typename + /// id + /// name + /// ... WorkspaceDetailPrompt_Workspace + /// } /// errors { /// __typename - /// ... UnauthorizedOperation - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... SchemaNotFoundError - /// ... Error + /// ... on UnauthorizedOperation { + /// message + /// } + /// ... on ValidationError { + /// message + /// } + /// ... on Error { + /// message + /// } /// } /// } /// } /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment ApiNotFoundError on ApiNotFoundError { - /// __typename - /// message - /// apiId - /// ... Error - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { + /// id /// name - /// ... Error - /// } - /// - /// fragment SchemaNotFoundError on SchemaNotFoundError { - /// message - /// apiId - /// tag - /// ... Error + /// personal /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishSchemaVersionMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICreateWorkspaceCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation + /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation /// - /// subscription OnSchemaVersionPublishUpdated( - /// $requestId: ID! + /// query ListWorkspaceCommandQuery( + /// $after: String + /// $first: Int /// ) { - /// onSchemaVersionPublishingUpdate(requestId: $requestId) { + /// me { /// __typename - /// ... SchemaVersionPublishFailed - /// ... SchemaVersionPublishSuccess - /// ... OperationInProgress - /// ... WaitForApproval - /// ... ProcessingTaskApproved - /// ... ProcessingTaskIsReady - /// ... ProcessingTaskIsQueued + /// workspaces(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListWorkspaceCommand_WorkspaceEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } /// } /// } /// - /// fragment SchemaVersionPublishFailed on SchemaVersionPublishFailed { - /// __typename - /// state - /// errors { + /// fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { + /// cursor + /// node { /// __typename - /// ... ConcurrentOperationError - /// ... OperationsAreNotAllowedError - /// ... SchemaVersionSyntaxError - /// ... SchemaVersionChangeViolationError - /// ... InvalidGraphQLSchemaError - /// ... PersistedQueryValidationError - /// ... UnexpectedProcessingError - /// ... ProcessingTimeoutError - /// ... OpenApiCollectionValidationError - /// ... McpFeatureCollectionValidationError + /// ... ListWorkspaceCommand_Workspace /// } /// } /// - /// fragment ConcurrentOperationError on ConcurrentOperationError { - /// __typename - /// message - /// ... Error + /// fragment ListWorkspaceCommand_Workspace on Workspace { + /// id + /// name + /// personal + /// ... WorkspaceDetailPrompt_Workspace /// } /// - /// fragment Error on Error { - /// message + /// fragment WorkspaceDetailPrompt_Workspace on Workspace { + /// id + /// name + /// personal /// } /// - /// fragment OperationsAreNotAllowedError on OperationsAreNotAllowedError { - /// __typename - /// message + /// fragment PageInfo on PageInfo { + /// hasPreviousPage + /// hasNextPage + /// endCursor + /// startCursor /// } - /// - /// fragment SchemaVersionSyntaxError on SchemaVersionSyntaxError { - /// __typename - /// message - /// column - /// position - /// line + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument + { + private ListWorkspaceCommandQueryQueryDocument() + { + } + + public static ListWorkspaceCommandQueryQueryDocument Instance { get; } = new ListWorkspaceCommandQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "81090212b99490332c1b0614e4509b64"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation + /// + /// query ListWorkspaceCommandQuery( + /// $after: String + /// $first: Int + /// ) { + /// me { + /// __typename + /// workspaces(after: $after, first: $first) { + /// __typename + /// edges { + /// __typename + /// ... ListWorkspaceCommand_WorkspaceEdge + /// } + /// pageInfo { + /// __typename + /// ... PageInfo + /// } + /// } + /// } /// } /// - /// fragment SchemaVersionChangeViolationError on SchemaVersionChangeViolationError { - /// __typename - /// changes { + /// fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { + /// cursor + /// node { /// __typename - /// ... SchemaChangeLogEntry + /// ... ListWorkspaceCommand_Workspace /// } /// } /// - /// fragment SchemaChangeLogEntry on SchemaChangeLogEntry { - /// __typename - /// ... TypeSystemMemberAddedChange - /// ... TypeSystemMemberRemovedChange - /// ... ObjectModifiedChange - /// ... InputObjectModifiedChange - /// ... DirectiveModifiedChange - /// ... ScalarModifiedChange - /// ... EnumModifiedChange - /// ... UnionModifiedChange - /// ... InterfaceModifiedChange - /// ... SchemaChange + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListWorkspaceCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + } + + private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _stringFormatter = @stringFormatter; + _intFormatter = @intFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListWorkspaceCommandQueryResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.ListWorkspaceCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(after, first); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(after, first); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatAfter(global::System.String? value) + { + if (value is null) + { + return value; + } + else + { + return _stringFormatter.Format(value); + } + } + + private global::System.Object? FormatFirst(global::System.Int32? value) + { + if (value is null) + { + return value; + } + else + { + return _intFormatter.Format(value); + } + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IListWorkspaceCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument : global::StrawberryShake.IDocument + { + 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 => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bb47ed5730c7751c64b0f1fdcc3f0bf5"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + } + + private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _stringFormatter = @stringFormatter; + _intFormatter = @intFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult); + + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(after, first); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(after, first); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatAfter(global::System.String? value) + { + if (value is null) + { + return value; + } + else + { + return _stringFormatter.Format(value); + } + } + + private global::System.Object? FormatFirst(global::System.Int32? value) + { + if (value is null) + { + return value; + } + else + { + return _intFormatter.Format(value); + } + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { + /// publishSchema(input: $input) { + /// __typename + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... ApiNotFoundError + /// ... StageNotFoundError + /// ... SchemaNotFoundError + /// ... Error + /// } + /// } + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment SchemaNotFoundError on SchemaNotFoundError { + /// message + /// apiId + /// tag + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishSchemaVersionMutationDocument : global::StrawberryShake.IDocument + { + private PublishSchemaVersionMutationDocument() + { + } + + public static PublishSchemaVersionMutationDocument Instance { get; } = new PublishSchemaVersionMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d38a43a7b864ae9c3d787807b5f5f460"); + + public override global::System.String ToString() + { +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { + /// publishSchema(input: $input) { + /// __typename + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... ApiNotFoundError + /// ... StageNotFoundError + /// ... SchemaNotFoundError + /// ... Error + /// } + /// } + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment SchemaNotFoundError on SchemaNotFoundError { + /// message + /// apiId + /// tag + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishSchemaVersionMutation : global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _publishSchemaInputFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _publishSchemaInputFormatter = serializerResolver.GetInputValueFormatter("PublishSchemaInput"); + } + + private PublishSchemaVersionMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter publishSchemaInputFormatter) + { + _operationExecutor = operationExecutor; + _configure = configure; + _publishSchemaInputFormatter = publishSchemaInputFormatter; + } + + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPublishSchemaVersionResult); + + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersionMutation(_operationExecutor, _configure.Add(configure), _publishSchemaInputFormatter); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithRequestUri(global::System.Uri requestUri) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } + + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); + } + + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::System.Threading.CancellationToken cancellationToken = default) + { + var request = CreateRequest(input); + foreach (var configure in _configure) + { + configure(request); + } + + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); + return _operationExecutor.Watch(request, strategy); + } + + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input) + { + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("input", FormatInput(input)); + return CreateRequest(variables); + } + + 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.PersistedOperation, variables: variables); + } + + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput value) + { + if (value is null) + { + throw new global::System.ArgumentNullException(nameof(value)); + } + + return _publishSchemaInputFormatter.Format(value); + } + + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) + { + return CreateRequest(variables!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the PublishSchemaVersion GraphQL operation + /// + /// mutation PublishSchemaVersion( + /// $input: PublishSchemaInput! + /// ) { + /// publishSchema(input: $input) { + /// __typename + /// id + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... ApiNotFoundError + /// ... StageNotFoundError + /// ... SchemaNotFoundError + /// ... Error + /// } + /// } + /// } + /// + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment Error on Error { + /// message + /// } + /// + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error + /// } + /// + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message + /// name + /// ... Error + /// } + /// + /// fragment SchemaNotFoundError on SchemaNotFoundError { + /// message + /// apiId + /// tag + /// ... Error + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IPublishSchemaVersionMutation : global::StrawberryShake.IOperationRequestFactory + { + global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the OnSchemaVersionPublishUpdated GraphQL operation + /// + /// 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 { @@ -163516,58 +167157,26 @@ public partial interface IOnSchemaVersionValidationUpdatedSubscription : global: // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the UpdateStages GraphQL operation + /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! /// ) { - /// updateStages(input: $input) { + /// cancelFusionConfigurationComposition(input: $input) { /// __typename - /// api { - /// __typename - /// stages { - /// __typename - /// ... StageDetailPrompt_Stage - /// } - /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... on Error { - /// message - /// __typename - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... 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 { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -163575,55 +167184,30 @@ public partial interface IOnSchemaVersionValidationUpdatedSubscription : global: /// message /// } /// - /// fragment StageNotFoundError on StageNotFoundError { + /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// name /// ... Error /// } /// - /// fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// stages { - /// __typename - /// name - /// publishedSchema { - /// __typename - /// version { - /// __typename - /// tag - /// } - /// } - /// publishedClients { - /// __typename - /// client { - /// __typename - /// name - /// } - /// publishedVersions { - /// __typename - /// version { - /// __typename - /// tag - /// } - /// } - /// } - /// } + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesMutationDocument : global::StrawberryShake.IDocument + public partial class CancelFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { - private UpdateStagesMutationDocument() + private CancelFusionConfigurationPublishMutationDocument() { } - public static UpdateStagesMutationDocument Instance { get; } = new UpdateStagesMutationDocument(); + public static CancelFusionConfigurationPublishMutationDocument Instance { get; } = new CancelFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a50cce1fa951fcdc164e78c6f8726374"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "39e48feb517b1ca240cec144623126c8"); public override global::System.String ToString() { @@ -163637,58 +167221,26 @@ private UpdateStagesMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the UpdateStages GraphQL operation + /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! /// ) { - /// updateStages(input: $input) { + /// cancelFusionConfigurationComposition(input: $input) { /// __typename - /// api { - /// __typename - /// stages { - /// __typename - /// ... StageDetailPrompt_Stage - /// } - /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... on Error { - /// message - /// __typename - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... 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 { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -163696,81 +167248,56 @@ private UpdateStagesMutationDocument() /// message /// } /// - /// fragment StageNotFoundError on StageNotFoundError { + /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { /// __typename /// message - /// name /// ... Error /// } /// - /// fragment StagesHavePublishedDependenciesError on StagesHavePublishedDependenciesError { + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { /// __typename /// message - /// stages { - /// __typename - /// name - /// publishedSchema { - /// __typename - /// version { - /// __typename - /// tag - /// } - /// } - /// publishedClients { - /// __typename - /// client { - /// __typename - /// name - /// } - /// publishedVersions { - /// __typename - /// version { - /// __typename - /// tag - /// } - /// } - /// } - /// } + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesMutation : global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation + public partial class CancelFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _updateStagesInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _cancelFusionConfigurationCompositionInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _updateStagesInputFormatter = serializerResolver.GetInputValueFormatter("UpdateStagesInput"); + _cancelFusionConfigurationCompositionInputFormatter = serializerResolver.GetInputValueFormatter("CancelFusionConfigurationCompositionInput"); } - private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter updateStagesInputFormatter) + private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter cancelFusionConfigurationCompositionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _updateStagesInputFormatter = updateStagesInputFormatter; + _cancelFusionConfigurationCompositionInputFormatter = cancelFusionConfigurationCompositionInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IUpdateStagesResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICancelFusionConfigurationPublishResult); - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesMutation(_operationExecutor, _configure.Add(configure), _updateStagesInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _cancelFusionConfigurationCompositionInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -163781,13 +167308,13 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -163796,17 +167323,17 @@ 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.PersistedOperation, 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.CommandLine.Client.UpdateStagesInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _updateStagesInputFormatter.Format(value); + return _cancelFusionConfigurationCompositionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -163817,58 +167344,26 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor - /// Represents the operation service of the UpdateStages GraphQL operation + /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation /// - /// mutation UpdateStages( - /// $input: UpdateStagesInput! + /// mutation CancelFusionConfigurationPublish( + /// $input: CancelFusionConfigurationCompositionInput! /// ) { - /// updateStages(input: $input) { + /// cancelFusionConfigurationComposition(input: $input) { /// __typename - /// api { - /// __typename - /// stages { - /// __typename - /// ... StageDetailPrompt_Stage - /// } - /// } /// errors { /// __typename - /// ... ApiNotFoundError - /// ... StageNotFoundError - /// ... StagesHavePublishedDependenciesError - /// ... on Error { - /// message - /// __typename - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... 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 { + /// fragment UnauthorizedOperation on UnauthorizedOperation { /// __typename /// message - /// apiId /// ... Error /// } /// @@ -163876,108 +167371,82 @@ private UpdateStagesMutation(global::StrawberryShake.IOperationExecutor /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IUpdateStagesMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface ICancelFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.UpdateStagesInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListStagesQuery GraphQL operation + /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! /// ) { - /// node(id: $apiId) { + /// commitFusionConfigurationPublish(input: $input) { /// __typename - /// ... on Api { - /// stages { - /// __typename - /// id - /// name - /// displayName - /// ... StageDetailPrompt_Stage - /// } + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment StageDetailPrompt_Stage on Stage { - /// id - /// name - /// displayName - /// conditions { - /// __typename - /// ... StageCondition - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// fragment Error on Error { + /// message /// } /// - /// fragment AfterStageCondition on AfterStageCondition { - /// afterStage { - /// __typename - /// name - /// } + /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryQueryDocument : global::StrawberryShake.IDocument + public partial class CommitFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { - private ListStagesQueryQueryDocument() + private CommitFusionConfigurationPublishMutationDocument() { } - public static ListStagesQueryQueryDocument Instance { get; } = new ListStagesQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static CommitFusionConfigurationPublishMutationDocument Instance { get; } = new CommitFusionConfigurationPublishMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ff9fd00b5a96ac47f6aa413a425337d9"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fd942dedfe5e376385ae72436c97104a"); public override global::System.String ToString() { @@ -163991,86 +167460,85 @@ private ListStagesQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListStagesQuery GraphQL operation + /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! /// ) { - /// node(id: $apiId) { + /// commitFusionConfigurationPublish(input: $input) { /// __typename - /// ... on Api { - /// stages { - /// __typename - /// id - /// name - /// displayName - /// ... StageDetailPrompt_Stage - /// } + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment StageDetailPrompt_Stage on Stage { - /// id - /// name - /// displayName - /// conditions { - /// __typename - /// ... StageCondition - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// fragment Error on Error { + /// message /// } /// - /// fragment AfterStageCondition on AfterStageCondition { - /// afterStage { - /// __typename - /// name - /// } + /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery + public partial class CommitFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _commitFusionConfigurationPublishInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CommitFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _commitFusionConfigurationPublishInputFormatter = serializerResolver.GetInputValueFormatter("CommitFusionConfigurationPublishInput"); } - private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) + private CommitFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter commitFusionConfigurationPublishInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _iDFormatter = iDFormatter; + _commitFusionConfigurationPublishInputFormatter = commitFusionConfigurationPublishInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListStagesQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICommitFusionConfigurationPublishResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _commitFusionConfigurationPublishInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -164079,141 +167547,162 @@ private ListStagesQueryQuery(global::StrawberryShake.IOperationExecutor> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null) + private void MapFilesFromTypeCommitFusionConfigurationPublishInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value, global::System.Collections.Generic.Dictionary files) { - var request = CreateRequest(apiId); + var pathConfiguration = path + ".configuration"; + var valueConfiguration = value.Configuration; + files.Add(pathConfiguration, valueConfiguration is global::StrawberryShake.Upload u ? u : null); + } + + private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value, global::System.Collections.Generic.Dictionary files) + { + if (value is { } value_i) + { + MapFilesFromTypeCommitFusionConfigurationPublishInput(path, value_i, files); + } + } + + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); - return CreateRequest(variables); + variables.Add("input", FormatInput(input)); + var files = new global::System.Collections.Generic.Dictionary(); + MapFilesFromArgumentInput("variables.input", input, files); + return CreateRequest(variables, files); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables, global::System.Collections.Generic.Dictionary files) { - return new global::StrawberryShake.OperationRequest(id: ListStagesQueryQueryDocument.Instance.Hash.Value, name: "ListStagesQuery", document: ListStagesQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, 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? FormatApiId(global::System.String value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _iDFormatter.Format(value); + return _commitFusionConfigurationPublishInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return CreateRequest(variables!); + return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); } } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListStagesQuery GraphQL operation + /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation /// - /// query ListStagesQuery( - /// $apiId: ID! + /// mutation CommitFusionConfigurationPublish( + /// $input: CommitFusionConfigurationPublishInput! /// ) { - /// node(id: $apiId) { + /// commitFusionConfigurationPublish(input: $input) { /// __typename - /// ... on Api { - /// stages { - /// __typename - /// id - /// name - /// displayName - /// ... StageDetailPrompt_Stage - /// } + /// errors { + /// __typename + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment StageDetailPrompt_Stage on Stage { - /// id - /// name - /// displayName - /// conditions { - /// __typename - /// ... StageCondition - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment StageCondition on StageCondition { - /// ... AfterStageCondition + /// fragment Error on Error { + /// message /// } /// - /// fragment AfterStageCondition on AfterStageCondition { - /// afterStage { - /// __typename - /// name - /// } + /// fragment FusionConfigurationRequestNotFoundError on FusionConfigurationRequestNotFoundError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListStagesQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface ICommitFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation + /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! /// ) { - /// createWorkspace(input: $input) { + /// startFusionConfigurationComposition(input: $input) { /// __typename - /// workspace { - /// __typename - /// id - /// name - /// ... WorkspaceDetailPrompt_Workspace - /// } /// errors { /// __typename - /// ... on UnauthorizedOperation { - /// message - /// } - /// ... on ValidationError { - /// message - /// } - /// ... on Error { - /// message - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationMutationDocument : global::StrawberryShake.IDocument + public partial class StartFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { - private CreateWorkspaceCommandMutationMutationDocument() + private StartFusionConfigurationPublishMutationDocument() { } - public static CreateWorkspaceCommandMutationMutationDocument Instance { get; } = new CreateWorkspaceCommandMutationMutationDocument(); + public static StartFusionConfigurationPublishMutationDocument Instance { get; } = new StartFusionConfigurationPublishMutationDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c8d21a0bb621a01952ffb6224bbbfe0d"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2513a57b937300d59ac37db38e3592e5"); public override global::System.String ToString() { @@ -164227,78 +167716,83 @@ private CreateWorkspaceCommandMutationMutationDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation + /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! /// ) { - /// createWorkspace(input: $input) { + /// startFusionConfigurationComposition(input: $input) { /// __typename - /// workspace { - /// __typename - /// id - /// name - /// ... WorkspaceDetailPrompt_Workspace - /// } /// errors { /// __typename - /// ... on UnauthorizedOperation { - /// message - /// } - /// ... on ValidationError { - /// message - /// } - /// ... on Error { - /// message - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationMutation : global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation + public partial class StartFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _createWorkspaceInputFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _startFusionConfigurationCompositionInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _createWorkspaceInputFormatter = serializerResolver.GetInputValueFormatter("CreateWorkspaceInput"); + _startFusionConfigurationCompositionInputFormatter = serializerResolver.GetInputValueFormatter("StartFusionConfigurationCompositionInput"); } - private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter createWorkspaceInputFormatter) + private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter startFusionConfigurationCompositionInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _createWorkspaceInputFormatter = createWorkspaceInputFormatter; + _startFusionConfigurationCompositionInputFormatter = startFusionConfigurationCompositionInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICreateWorkspaceCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IStartFusionConfigurationPublishResult); - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutationMutation(_operationExecutor, _configure.Add(configure), _createWorkspaceInputFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _startFusionConfigurationCompositionInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(input); foreach (var configure in _configure) @@ -164309,13 +167803,13 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input) { var variables = new global::System.Collections.Generic.Dictionary(); variables.Add("input", FormatInput(input)); @@ -164324,17 +167818,17 @@ 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.PersistedOperation, 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.CommandLine.Client.CreateWorkspaceInput value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput value) { if (value is null) { throw new global::System.ArgumentNullException(nameof(value)); } - return _createWorkspaceInputFormatter.Format(value); + return _startFusionConfigurationCompositionInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -164345,115 +167839,126 @@ private CreateWorkspaceCommandMutationMutation(global::StrawberryShake.IOperatio // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the CreateWorkspaceCommandMutation GraphQL operation + /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation /// - /// mutation CreateWorkspaceCommandMutation( - /// $input: CreateWorkspaceInput! + /// mutation StartFusionConfigurationPublish( + /// $input: StartFusionConfigurationCompositionInput! /// ) { - /// createWorkspace(input: $input) { + /// startFusionConfigurationComposition(input: $input) { /// __typename - /// workspace { - /// __typename - /// id - /// name - /// ... WorkspaceDetailPrompt_Workspace - /// } /// errors { /// __typename - /// ... on UnauthorizedOperation { - /// message - /// } - /// ... on ValidationError { - /// message - /// } - /// ... on Error { - /// message - /// } + /// ... UnauthorizedOperation + /// ... FusionConfigurationRequestNotFoundError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal + /// 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 /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICreateWorkspaceCommandMutationMutation : global::StrawberryShake.IOperationRequestFactory + public partial interface IStartFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation + /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! /// ) { - /// me { + /// beginFusionConfigurationPublish(input: $input) { /// __typename - /// workspaces(after: $after, first: $first) { + /// requestId + /// errors { /// __typename - /// edges { - /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ApiNotFoundError + /// ... SubgraphInvalidError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { - /// cursor - /// node { - /// __typename - /// ... ListWorkspaceCommand_Workspace - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListWorkspaceCommand_Workspace on Workspace { - /// id - /// name - /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// fragment Error on Error { + /// message /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// personal + /// ... Error /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error + /// } + /// + /// fragment SubgraphInvalidError on SubgraphInvalidError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument + public partial class BeginFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument { - private ListWorkspaceCommandQueryQueryDocument() + private BeginFusionConfigurationPublishMutationDocument() { } - public static ListWorkspaceCommandQueryQueryDocument Instance { get; } = new ListWorkspaceCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public static BeginFusionConfigurationPublishMutationDocument Instance { get; } = new BeginFusionConfigurationPublishMutationDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "81090212b99490332c1b0614e4509b64"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "300e84eb9429d49f38148115ee5a4681"); public override global::System.String ToString() { @@ -164467,99 +167972,102 @@ private ListWorkspaceCommandQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation + /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! /// ) { - /// me { + /// beginFusionConfigurationPublish(input: $input) { /// __typename - /// workspaces(after: $after, first: $first) { + /// requestId + /// errors { /// __typename - /// edges { - /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ApiNotFoundError + /// ... SubgraphInvalidError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { - /// cursor - /// node { - /// __typename - /// ... ListWorkspaceCommand_Workspace - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListWorkspaceCommand_Workspace on Workspace { - /// id - /// name - /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// fragment Error on Error { + /// message /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// personal + /// ... Error /// } /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor + /// fragment ApiNotFoundError on ApiNotFoundError { + /// __typename + /// message + /// apiId + /// ... Error + /// } + /// + /// fragment SubgraphInvalidError on SubgraphInvalidError { + /// __typename + /// message + /// ... Error + /// } + /// + /// fragment InvalidProcessingStateTransitionError on InvalidProcessingStateTransitionError { + /// __typename + /// message + /// ... Error /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery + public partial class BeginFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _beginFusionConfigurationPublishInputFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); + _beginFusionConfigurationPublishInputFormatter = serializerResolver.GetInputValueFormatter("BeginFusionConfigurationPublishInput"); } - private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter beginFusionConfigurationPublishInputFormatter) { _operationExecutor = operationExecutor; _configure = configure; - _stringFormatter = @stringFormatter; - _intFormatter = @intFormatter; + _beginFusionConfigurationPublishInputFormatter = beginFusionConfigurationPublishInputFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IListWorkspaceCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IBeginFusionConfigurationPublishResult); - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.ListWorkspaceCommandQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _beginFusionConfigurationPublishInputFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(after, first); + var request = CreateRequest(input); foreach (var configure in _configure) { configure(request); @@ -164568,47 +168076,32 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(after, first); + var request = CreateRequest(input); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); + variables.Add("input", FormatInput(input)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatAfter(global::System.String? value) + private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput value) { if (value is null) { - return value; - } - else - { - return _stringFormatter.Format(value); + throw new global::System.ArgumentNullException(nameof(value)); } - } - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } + return _beginFusionConfigurationPublishInputFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -164619,1766 +168112,41 @@ private ListWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecuto // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the ListWorkspaceCommandQuery GraphQL operation + /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation /// - /// query ListWorkspaceCommandQuery( - /// $after: String - /// $first: Int + /// mutation BeginFusionConfigurationPublish( + /// $input: BeginFusionConfigurationPublishInput! /// ) { - /// me { + /// beginFusionConfigurationPublish(input: $input) { /// __typename - /// workspaces(after: $after, first: $first) { + /// requestId + /// errors { /// __typename - /// edges { - /// __typename - /// ... ListWorkspaceCommand_WorkspaceEdge - /// } - /// pageInfo { - /// __typename - /// ... PageInfo - /// } + /// ... UnauthorizedOperation + /// ... StageNotFoundError + /// ... ApiNotFoundError + /// ... SubgraphInvalidError + /// ... InvalidProcessingStateTransitionError + /// ... Error /// } /// } /// } /// - /// fragment ListWorkspaceCommand_WorkspaceEdge on WorkspacesEdge { - /// cursor - /// node { - /// __typename - /// ... ListWorkspaceCommand_Workspace - /// } + /// fragment UnauthorizedOperation on UnauthorizedOperation { + /// __typename + /// message + /// ... Error /// } /// - /// fragment ListWorkspaceCommand_Workspace on Workspace { - /// id - /// name - /// personal - /// ... WorkspaceDetailPrompt_Workspace + /// fragment Error on Error { + /// message /// } /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id + /// fragment StageNotFoundError on StageNotFoundError { + /// __typename + /// message /// name - /// personal - /// } - /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IListWorkspaceCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryQueryDocument : global::StrawberryShake.IDocument - { - 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 => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "bb47ed5730c7751c64b0f1fdcc3f0bf5"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); - } - - private SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _stringFormatter = @stringFormatter; - _intFormatter = @intFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.SetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _intFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(after, first); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(after, first); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String? after, global::System.Int32? first) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatAfter(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _stringFormatter.Format(value); - } - } - - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the SetDefaultWorkspaceCommand_SelectWorkspace_Query GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation - /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... WorkspaceDetailPrompt_Workspace - /// } - /// } - /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryQueryDocument : global::StrawberryShake.IDocument - { - private ShowWorkspaceCommandQueryQueryDocument() - { - } - - public static ShowWorkspaceCommandQueryQueryDocument Instance { get; } = new ShowWorkspaceCommandQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "c46bc0ec07d6718f937f666a59f957b0"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation - /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... WorkspaceDetailPrompt_Workspace - /// } - /// } - /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - } - - private ShowWorkspaceCommandQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _iDFormatter = iDFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IShowWorkspaceCommandQueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQueryQuery(_operationExecutor, _configure.Add(configure), _iDFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(workspaceId); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(workspaceId); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatWorkspaceId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the ShowWorkspaceCommandQuery GraphQL operation - /// - /// query ShowWorkspaceCommandQuery( - /// $workspaceId: ID! - /// ) { - /// node(id: $workspaceId) { - /// __typename - /// ... WorkspaceDetailPrompt_Workspace - /// } - /// } - /// - /// fragment WorkspaceDetailPrompt_Workspace on Workspace { - /// id - /// name - /// personal - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IShowWorkspaceCommandQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the SelectApiPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryQueryDocument : global::StrawberryShake.IDocument - { - private SelectApiPromptQueryQueryDocument() - { - } - - public static SelectApiPromptQueryQueryDocument Instance { get; } = new SelectApiPromptQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a99c8cea1f4c187c4b1a8f615aa22fac"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the SelectApiPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _versionFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _versionFormatter = serializerResolver.GetInputValueFormatter("Version"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); - } - - private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _versionFormatter = versionFormatter; - _intFormatter = @intFormatter; - _iDFormatter = iDFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectApiPromptQueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.SelectApiPromptQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(workspaceId, after, first); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(workspaceId, after, first); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); - return CreateRequest(variables); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatAfter(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _versionFormatter.Format(value); - } - } - - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the SelectApiPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation - /// - /// 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 - /// } - /// } - /// } - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryQueryDocument : global::StrawberryShake.IDocument - { - private PageClientVersionDetailQueryQueryDocument() - { - } - - public static PageClientVersionDetailQueryQueryDocument Instance { get; } = new PageClientVersionDetailQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d2cc1b6089c0354e5f8addda5f6d5b56"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation - /// - /// 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 - /// } - /// } - /// } - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - } - - private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPageClientVersionDetailQueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String after, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(id, after); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String id, global::System.String after, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(id, after); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String id, global::System.String after) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("id", FormatId(id)); - variables.Add("after", FormatAfter(after)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatAfter(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _stringFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation - /// - /// 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 - /// } - /// } - /// } - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPageClientVersionDetailQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String after, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String id, global::System.String after, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the SelectClientPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryQueryDocument : global::StrawberryShake.IDocument - { - private SelectClientPromptQueryQueryDocument() - { - } - - public static SelectClientPromptQueryQueryDocument Instance { get; } = new SelectClientPromptQueryQueryDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "89d9fea06884980ce1721212dff781b9"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the SelectClientPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); - _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); - } - - private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _stringFormatter = @stringFormatter; - _iDFormatter = iDFormatter; - _intFormatter = @intFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectClientPromptQueryResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.SelectClientPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(apiId, after, first); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(apiId, after, first); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); - variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatApiId(global::System.String value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _iDFormatter.Format(value); - } - - private global::System.Object? FormatAfter(global::System.String? value) - { - if (value is null) - { - return value; - } - else - { - return _stringFormatter.Format(value); - } - } - - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the SelectClientPromptQuery GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation - /// - /// mutation BeginFusionConfigurationPublish( - /// $input: BeginFusionConfigurationPublishInput! - /// ) { - /// beginFusionConfigurationPublish(input: $input) { - /// __typename - /// requestId - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument - { - private BeginFusionConfigurationPublishMutationDocument() - { - } - - public static BeginFusionConfigurationPublishMutationDocument Instance { get; } = new BeginFusionConfigurationPublishMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "300e84eb9429d49f38148115ee5a4681"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation - /// - /// mutation BeginFusionConfigurationPublish( - /// $input: BeginFusionConfigurationPublishInput! - /// ) { - /// beginFusionConfigurationPublish(input: $input) { - /// __typename - /// requestId - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class BeginFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _beginFusionConfigurationPublishInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _beginFusionConfigurationPublishInputFormatter = serializerResolver.GetInputValueFormatter("BeginFusionConfigurationPublishInput"); - } - - private BeginFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter beginFusionConfigurationPublishInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _beginFusionConfigurationPublishInputFormatter = beginFusionConfigurationPublishInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IBeginFusionConfigurationPublishResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _beginFusionConfigurationPublishInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublishInput value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _beginFusionConfigurationPublishInputFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the BeginFusionConfigurationPublish GraphQL operation - /// - /// mutation BeginFusionConfigurationPublish( - /// $input: BeginFusionConfigurationPublishInput! - /// ) { - /// beginFusionConfigurationPublish(input: $input) { - /// __typename - /// requestId - /// errors { - /// __typename - /// ... UnauthorizedOperation - /// ... StageNotFoundError - /// ... ApiNotFoundError - /// ... SubgraphInvalidError - /// ... InvalidProcessingStateTransitionError - /// ... Error - /// } - /// } - /// } - /// - /// fragment UnauthorizedOperation on UnauthorizedOperation { - /// __typename - /// message - /// ... Error - /// } - /// - /// fragment Error on Error { - /// message - /// } - /// - /// fragment StageNotFoundError on StageNotFoundError { - /// __typename - /// message - /// name - /// ... Error + /// ... Error /// } /// /// fragment ApiNotFoundError on ApiNotFoundError { @@ -168235,740 +170003,6 @@ public partial interface IOnFusionConfigurationPublishingTaskChangedSubscription global::System.IObservable> Watch(global::System.String requestId, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument - { - private CancelFusionConfigurationPublishMutationDocument() - { - } - - public static CancelFusionConfigurationPublishMutationDocument Instance { get; } = new CancelFusionConfigurationPublishMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "39e48feb517b1ca240cec144623126c8"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _cancelFusionConfigurationCompositionInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _cancelFusionConfigurationCompositionInputFormatter = serializerResolver.GetInputValueFormatter("CancelFusionConfigurationCompositionInput"); - } - - private CancelFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter cancelFusionConfigurationCompositionInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _cancelFusionConfigurationCompositionInputFormatter = cancelFusionConfigurationCompositionInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICancelFusionConfigurationPublishResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _cancelFusionConfigurationCompositionInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _cancelFusionConfigurationCompositionInputFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the CancelFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICancelFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument - { - private CommitFusionConfigurationPublishMutationDocument() - { - } - - public static CommitFusionConfigurationPublishMutationDocument Instance { get; } = new CommitFusionConfigurationPublishMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fd942dedfe5e376385ae72436c97104a"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _commitFusionConfigurationPublishInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public CommitFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _commitFusionConfigurationPublishInputFormatter = serializerResolver.GetInputValueFormatter("CommitFusionConfigurationPublishInput"); - } - - private CommitFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter commitFusionConfigurationPublishInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _commitFusionConfigurationPublishInputFormatter = commitFusionConfigurationPublishInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ICommitFusionConfigurationPublishResult); - - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _commitFusionConfigurationPublishInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - private void MapFilesFromTypeCommitFusionConfigurationPublishInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value, global::System.Collections.Generic.Dictionary files) - { - var pathConfiguration = path + ".configuration"; - var valueConfiguration = value.Configuration; - files.Add(pathConfiguration, valueConfiguration is global::StrawberryShake.Upload u ? u : null); - } - - private void MapFilesFromArgumentInput(global::System.String path, global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value, global::System.Collections.Generic.Dictionary files) - { - if (value is { } value_i) - { - MapFilesFromTypeCommitFusionConfigurationPublishInput(path, value_i, files); - } - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - var files = new global::System.Collections.Generic.Dictionary(); - MapFilesFromArgumentInput("variables.input", input, files); - return CreateRequest(variables, files); - } - - 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.PersistedOperation, files: files, variables: variables); - } - - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _commitFusionConfigurationPublishInputFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!, new global::System.Collections.Generic.Dictionary()); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the CommitFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ICommitFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublishInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator - /// - /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishMutationDocument : global::StrawberryShake.IDocument - { - private StartFusionConfigurationPublishMutationDocument() - { - } - - public static StartFusionConfigurationPublishMutationDocument Instance { get; } = new StartFusionConfigurationPublishMutationDocument(); - public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Mutation; - public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2513a57b937300d59ac37db38e3592e5"); - - public override global::System.String ToString() - { -#if NETCOREAPP3_1_OR_GREATER - return global::System.Text.Encoding.UTF8.GetString(Body); -#else - return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); -#endif - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator - /// - /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishMutation : global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation - { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _startFusionConfigurationCompositionInputFormatter; - private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); - _startFusionConfigurationCompositionInputFormatter = serializerResolver.GetInputValueFormatter("StartFusionConfigurationCompositionInput"); - } - - private StartFusionConfigurationPublishMutation(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter startFusionConfigurationCompositionInputFormatter) - { - _operationExecutor = operationExecutor; - _configure = configure; - _startFusionConfigurationCompositionInputFormatter = startFusionConfigurationCompositionInputFormatter; - } - - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IStartFusionConfigurationPublishResult); - - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation With(global::System.Action configure) - { - return new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublishMutation(_operationExecutor, _configure.Add(configure), _startFusionConfigurationCompositionInputFormatter); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); - } - - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient) - { - return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); - } - - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default) - { - var request = CreateRequest(input); - foreach (var configure in _configure) - { - configure(request); - } - - return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); - } - - public global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null) - { - var request = CreateRequest(input); - return _operationExecutor.Watch(request, strategy); - } - - private global::StrawberryShake.OperationRequest CreateRequest(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input) - { - var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("input", FormatInput(input)); - return CreateRequest(variables); - } - - 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.PersistedOperation, variables: variables); - } - - private global::System.Object? FormatInput(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput value) - { - if (value is null) - { - throw new global::System.ArgumentNullException(nameof(value)); - } - - return _startFusionConfigurationCompositionInputFormatter.Format(value); - } - - global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) - { - return CreateRequest(variables!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator - /// - /// Represents the operation service of the StartFusionConfigurationPublish GraphQL operation - /// - /// 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 - /// } - /// - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IStartFusionConfigurationPublishMutation : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationCompositionInput input, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// /// Represents the operation service of the ValidateFusionConfigurationPublish GraphQL operation @@ -169227,20 +170261,20 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMcpFeatureCollectionPromptQuery( + /// query SelectMockSchemaPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// mcpFeatureCollections(after: $after, first: $first) { + /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ... SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename @@ -169250,23 +170284,35 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ... SelectMockCommand_Mock /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... MockSchemaDetailPrompt /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name + /// createdAt + /// createdBy { + /// __typename + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username + /// } + /// downstreamUrl + /// url /// } /// /// fragment PageInfo on PageInfo { @@ -169278,16 +170324,16 @@ public partial interface IValidateFusionConfigurationPublishMutation : global::S /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMcpFeatureCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument + public partial class SelectMockSchemaPromptQueryQueryDocument : global::StrawberryShake.IDocument { - private SelectMcpFeatureCollectionPromptQueryQueryDocument() + private SelectMockSchemaPromptQueryQueryDocument() { } - public static SelectMcpFeatureCollectionPromptQueryQueryDocument Instance { get; } = new SelectMcpFeatureCollectionPromptQueryQueryDocument(); + public static SelectMockSchemaPromptQueryQueryDocument Instance { get; } = new SelectMockSchemaPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "021d1bafc7178634565bd5543b9e55b7"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8e45bab85454282aa6a1f07c57c013a1"); public override global::System.String ToString() { @@ -169301,20 +170347,20 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMcpFeatureCollectionPromptQuery( + /// query SelectMockSchemaPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// mcpFeatureCollections(after: $after, first: $first) { + /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ... SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename @@ -169324,23 +170370,35 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ... SelectMockCommand_Mock /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... MockSchemaDetailPrompt /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name + /// createdAt + /// createdBy { + /// __typename + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username + /// } + /// downstreamUrl + /// url /// } /// /// fragment PageInfo on PageInfo { @@ -169352,14 +170410,14 @@ private SelectMcpFeatureCollectionPromptQueryQueryDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMcpFeatureCollectionPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery + public partial class SelectMockSchemaPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); @@ -169367,7 +170425,7 @@ public SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOpera _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -169376,24 +170434,24 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectMcpFeatureCollectionPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectMockSchemaPromptQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.SelectMcpFeatureCollectionPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.SelectMockSchemaPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(apiId, after, first); foreach (var configure in _configure) @@ -169404,7 +170462,7 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(apiId, after, first); return _operationExecutor.Watch(request, strategy); @@ -169421,7 +170479,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.PersistedOperation, 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) @@ -169466,20 +170524,20 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation /// - /// query SelectMcpFeatureCollectionPromptQuery( + /// query SelectMockSchemaPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// mcpFeatureCollections(after: $after, first: $first) { + /// mockSchemas(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge + /// ... SelectMockCommand_MockEdge /// } /// pageInfo { /// __typename @@ -169489,23 +170547,35 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollectionEdge on ApiMcpFeatureCollectionsEdge { + /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { /// cursor /// node { /// __typename - /// ... SelectMcpFeatureCollectionPrompt_McpFeatureCollection + /// ... SelectMockCommand_Mock /// } /// } /// - /// fragment SelectMcpFeatureCollectionPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment SelectMockCommand_Mock on MockSchema { /// id /// name - /// ... McpFeatureCollectionDetailPrompt_McpFeatureCollection + /// ... MockSchemaDetailPrompt /// } /// - /// fragment McpFeatureCollectionDetailPrompt_McpFeatureCollection on McpFeatureCollection { + /// fragment MockSchemaDetailPrompt on MockSchema { /// id /// name + /// createdAt + /// createdBy { + /// __typename + /// username + /// } + /// modifiedAt + /// modifiedBy { + /// __typename + /// username + /// } + /// downstreamUrl + /// url /// } /// /// fragment PageInfo on PageInfo { @@ -169517,90 +170587,71 @@ private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOper /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation + /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! /// ) { - /// apiById(id: $apiId) { + /// node(id: $id) { /// __typename - /// mockSchemas(after: $after, first: $first) { - /// __typename - /// edges { - /// __typename - /// ... SelectMockCommand_MockEdge - /// } - /// pageInfo { + /// ... on Client { + /// versions(first: 10, after: $after) { /// __typename - /// ... PageInfo + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } /// } /// } /// } /// } /// - /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { /// 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 + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } /// } - /// downstreamUrl - /// url - /// } - /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryQueryDocument : global::StrawberryShake.IDocument + public partial class PageClientVersionDetailQueryQueryDocument : global::StrawberryShake.IDocument { - private SelectMockSchemaPromptQueryQueryDocument() + private PageClientVersionDetailQueryQueryDocument() { } - public static SelectMockSchemaPromptQueryQueryDocument Instance { get; } = new SelectMockSchemaPromptQueryQueryDocument(); + public static PageClientVersionDetailQueryQueryDocument Instance { get; } = new PageClientVersionDetailQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8e45bab85454282aa6a1f07c57c013a1"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "d2cc1b6089c0354e5f8addda5f6d5b56"); public override global::System.String ToString() { @@ -169614,113 +170665,91 @@ private SelectMockSchemaPromptQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation + /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! /// ) { - /// apiById(id: $apiId) { + /// node(id: $id) { /// __typename - /// mockSchemas(after: $after, first: $first) { - /// __typename - /// edges { - /// __typename - /// ... SelectMockCommand_MockEdge - /// } - /// pageInfo { + /// ... on Client { + /// versions(first: 10, after: $after) { /// __typename - /// ... PageInfo + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } /// } /// } /// } /// } /// - /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { /// 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 + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } /// } - /// downstreamUrl - /// url - /// } - /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery + public partial class PageClientVersionDetailQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; - private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); _stringFormatter = serializerResolver.GetInputValueFormatter("String"); - _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private PageClientVersionDetailQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { _operationExecutor = operationExecutor; _configure = configure; _stringFormatter = @stringFormatter; _iDFormatter = iDFormatter; - _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectMockSchemaPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(IPageClientVersionDetailQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.SelectMockSchemaPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String after, global::System.Threading.CancellationToken cancellationToken = default) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(id, after); foreach (var configure in _configure) { configure(request); @@ -169729,27 +170758,26 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String id, global::System.String after, global::StrawberryShake.ExecutionStrategy? strategy = null) { - var request = CreateRequest(apiId, after, first); + var request = CreateRequest(id, after); return _operationExecutor.Watch(request, strategy); } - private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String id, global::System.String after) { var variables = new global::System.Collections.Generic.Dictionary(); - variables.Add("apiId", FormatApiId(apiId)); + variables.Add("id", FormatId(id)); variables.Add("after", FormatAfter(after)); - variables.Add("first", FormatFirst(first)); return CreateRequest(variables); } 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.PersistedOperation, 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? FormatApiId(global::System.String value) + private global::System.Object? FormatId(global::System.String value) { if (value is null) { @@ -169759,28 +170787,14 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu return _iDFormatter.Format(value); } - private global::System.Object? FormatAfter(global::System.String? value) + private global::System.Object? FormatAfter(global::System.String value) { if (value is null) { - return value; - } - else - { - return _stringFormatter.Format(value); + throw new global::System.ArgumentNullException(nameof(value)); } - } - private global::System.Object? FormatFirst(global::System.Int32? value) - { - if (value is null) - { - return value; - } - else - { - return _intFormatter.Format(value); - } + return _stringFormatter.Format(value); } global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) @@ -169791,94 +170805,75 @@ private SelectMockSchemaPromptQueryQuery(global::StrawberryShake.IOperationExecu // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the SelectMockSchemaPromptQuery GraphQL operation - /// - /// query SelectMockSchemaPromptQuery( - /// $apiId: ID! - /// $after: String - /// $first: Int + /// Represents the operation service of the PageClientVersionDetailQuery GraphQL operation + /// + /// query PageClientVersionDetailQuery( + /// $id: ID! + /// $after: String! /// ) { - /// apiById(id: $apiId) { + /// node(id: $id) { /// __typename - /// mockSchemas(after: $after, first: $first) { - /// __typename - /// edges { - /// __typename - /// ... SelectMockCommand_MockEdge - /// } - /// pageInfo { + /// ... on Client { + /// versions(first: 10, after: $after) { /// __typename - /// ... PageInfo + /// pageInfo { + /// __typename + /// hasNextPage + /// endCursor + /// } + /// edges { + /// __typename + /// ... ClientDetailPrompt_ClientVersionEdge + /// } /// } /// } /// } /// } /// - /// fragment SelectMockCommand_MockEdge on MockSchemasEdge { + /// fragment ClientDetailPrompt_ClientVersionEdge on ClientVersionEdge { /// 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 + /// id + /// createdAt + /// tag + /// publishedTo { + /// __typename + /// stage { + /// __typename + /// name + /// } + /// } /// } - /// downstreamUrl - /// url - /// } - /// - /// fragment PageInfo on PageInfo { - /// hasPreviousPage - /// hasNextPage - /// endCursor - /// startCursor /// } /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory + public partial interface IPageClientVersionDetailQueryQuery : global::StrawberryShake.IOperationRequestFactory { - global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String id, global::System.String after, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String id, global::System.String after, global::StrawberryShake.ExecutionStrategy? strategy = null); } // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery( + /// query SelectClientPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// openApiCollections(after: $after, first: $first) { + /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ... SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename @@ -169888,23 +170883,57 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { + /// fragment SelectClientPrompt_ClientEdge on ClientsEdge { /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ... SelectClientPrompt_Client /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { + /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ... ClientDetailPrompt_Client /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// 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 { @@ -169916,16 +170945,16 @@ public partial interface ISelectMockSchemaPromptQueryQuery : global::StrawberryS /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument + public partial class SelectClientPromptQueryQueryDocument : global::StrawberryShake.IDocument { - private SelectOpenApiCollectionPromptQueryQueryDocument() + private SelectClientPromptQueryQueryDocument() { } - public static SelectOpenApiCollectionPromptQueryQueryDocument Instance { get; } = new SelectOpenApiCollectionPromptQueryQueryDocument(); + public static SelectClientPromptQueryQueryDocument Instance { get; } = new SelectClientPromptQueryQueryDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cac7b1f4800fb9c9c07bed47c5bbd775"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "89d9fea06884980ce1721212dff781b9"); public override global::System.String ToString() { @@ -169939,20 +170968,20 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator /// - /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery( + /// query SelectClientPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// openApiCollections(after: $after, first: $first) { + /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ... SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename @@ -169962,23 +170991,57 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { + /// fragment SelectClientPrompt_ClientEdge on ClientsEdge { /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ... SelectClientPrompt_Client /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { + /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ... ClientDetailPrompt_Client /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// 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 { @@ -169990,14 +171053,14 @@ private SelectOpenApiCollectionPromptQueryQueryDocument() /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectOpenApiCollectionPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery + public partial class SelectClientPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery { - private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; - public SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); @@ -170005,7 +171068,7 @@ public SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperatio _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) + private SelectClientPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { _operationExecutor = operationExecutor; _configure = configure; @@ -170014,24 +171077,24 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati _intFormatter = @intFormatter; } - global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectOpenApiCollectionPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectClientPromptQueryResult); - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery With(global::System.Action configure) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery With(global::System.Action configure) { - return new global::ChilliCream.Nitro.CommandLine.Client.SelectOpenApiCollectionPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); + return new global::ChilliCream.Nitro.CommandLine.Client.SelectClientPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithRequestUri(global::System.Uri requestUri) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { var request = CreateRequest(apiId, after, first); foreach (var configure in _configure) @@ -170042,7 +171105,7 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { var request = CreateRequest(apiId, after, first); return _operationExecutor.Watch(request, strategy); @@ -170059,7 +171122,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.PersistedOperation, 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) @@ -170104,20 +171167,20 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator /// - /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// Represents the operation service of the SelectClientPromptQuery GraphQL operation /// - /// query SelectOpenApiCollectionPromptQuery( + /// query SelectClientPromptQuery( /// $apiId: ID! /// $after: String /// $first: Int /// ) { /// apiById(id: $apiId) { /// __typename - /// openApiCollections(after: $after, first: $first) { + /// clients(after: $after, first: $first) { /// __typename /// edges { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollectionEdge + /// ... SelectClientPrompt_ClientEdge /// } /// pageInfo { /// __typename @@ -170127,23 +171190,57 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollectionEdge on ApiOpenApiCollectionsEdge { + /// fragment SelectClientPrompt_ClientEdge on ClientsEdge { /// cursor /// node { /// __typename - /// ... SelectOpenApiCollectionPrompt_OpenApiCollection + /// ... SelectClientPrompt_Client /// } /// } /// - /// fragment SelectOpenApiCollectionPrompt_OpenApiCollection on OpenApiCollection { + /// fragment SelectClientPrompt_Client on Client { /// id /// name - /// ... OpenApiCollectionDetailPrompt_OpenApiCollection + /// ... ClientDetailPrompt_Client /// } /// - /// fragment OpenApiCollectionDetailPrompt_OpenApiCollection on OpenApiCollection { + /// 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 { @@ -170155,2213 +171252,1359 @@ private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperati /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory - { - global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery With(global::System.Action configure); - global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri); - global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); - global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); - global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ClientGenerator - /// - /// Represents the ApiClient GraphQL client - /// - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ApiClient : global::ChilliCream.Nitro.CommandLine.Client.IApiClient + public partial interface ISelectClientPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation _createApiKeyCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation _deleteApiKeyCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery _listApiKeyCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation _createApiCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery _deleteApiCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation _deleteApiCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery _listApiCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation _setApiSettingsCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery _showApiCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation _createClientCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation _deleteClientByIdCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery _listClientCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation _publishClientVersion; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription _onClientVersionPublishUpdated; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery _showClientCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation _unpublishClient; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation _uploadClient; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation _validateClientVersion; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription _onClientVersionValidationUpdated; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation _createEnvironmentCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery _listEnvironmentCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery _showEnvironmentCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery _fetchConfiguration; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation _uploadFusionSubgraph; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation _createMcpFeatureCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation _deleteMcpFeatureCollectionByIdCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery _listMcpFeatureCollectionCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation _publishMcpFeatureCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription _publishMcpFeatureCollectionCommandSubscription; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation _uploadMcpFeatureCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation _validateMcpFeatureCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription _validateMcpFeatureCollectionCommandSubscription; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation _createMockSchema; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery _listMockCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation _updateMockSchema; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation _createOpenApiCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation _deleteOpenApiCollectionByIdCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery _listOpenApiCollectionCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation _publishOpenApiCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription _publishOpenApiCollectionCommandSubscription; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation _uploadOpenApiCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation _validateOpenApiCollectionCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription _validateOpenApiCollectionCommandSubscription; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation _createPersonalAccessTokenCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery _listPersonalAccessTokenCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation _revokePersonalAccessTokenCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation _publishSchemaVersion; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription _onSchemaVersionPublishUpdated; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation _uploadSchema; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation _validateSchemaVersion; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription _onSchemaVersionValidationUpdated; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation _updateStages; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery _listStagesQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation _createWorkspaceCommandMutation; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery _listWorkspaceCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery _setDefaultWorkspaceCommand_SelectWorkspace_Query; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery _showWorkspaceCommandQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery _selectApiPromptQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery _pageClientVersionDetailQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery _selectClientPromptQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation _beginFusionConfigurationPublish; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription _onFusionConfigurationPublishingTaskChanged; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation _cancelFusionConfigurationPublish; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation _commitFusionConfigurationPublish; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation _startFusionConfigurationPublish; - private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation _validateFusionConfigurationPublish; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery _selectMcpFeatureCollectionPromptQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery _selectMockSchemaPromptQuery; - private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery _selectOpenApiCollectionPromptQuery; - public ApiClient(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation createApiKeyCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation deleteApiKeyCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery listApiKeyCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation createApiCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery deleteApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation deleteApiCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery listApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation setApiSettingsCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery showApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation createClientCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation deleteClientByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery listClientCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation publishClientVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription onClientVersionPublishUpdated, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery showClientCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation unpublishClient, global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation uploadClient, global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation validateClientVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription onClientVersionValidationUpdated, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation createEnvironmentCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery listEnvironmentCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery showEnvironmentCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery fetchConfiguration, global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation uploadFusionSubgraph, global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation createMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation deleteMcpFeatureCollectionByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery listMcpFeatureCollectionCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation publishMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription publishMcpFeatureCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation uploadMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation validateMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription validateMcpFeatureCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation createMockSchema, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery listMockCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation updateMockSchema, global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation createOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation deleteOpenApiCollectionByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery listOpenApiCollectionCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation publishOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription publishOpenApiCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation uploadOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation validateOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription validateOpenApiCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation createPersonalAccessTokenCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery listPersonalAccessTokenCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation revokePersonalAccessTokenCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation publishSchemaVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription onSchemaVersionPublishUpdated, global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation uploadSchema, global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation validateSchemaVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription onSchemaVersionValidationUpdated, global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation updateStages, global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery listStagesQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation createWorkspaceCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery listWorkspaceCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery setDefaultWorkspaceCommand_SelectWorkspace_Query, global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery showWorkspaceCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery selectApiPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery pageClientVersionDetailQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery selectClientPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation beginFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription onFusionConfigurationPublishingTaskChanged, global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation cancelFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation commitFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation startFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation validateFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery selectMcpFeatureCollectionPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery selectMockSchemaPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery selectOpenApiCollectionPromptQuery) - { - _createApiKeyCommandMutation = createApiKeyCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createApiKeyCommandMutation)); - _deleteApiKeyCommandMutation = deleteApiKeyCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteApiKeyCommandMutation)); - _listApiKeyCommandQuery = listApiKeyCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listApiKeyCommandQuery)); - _createApiCommandMutation = createApiCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createApiCommandMutation)); - _deleteApiCommandQuery = deleteApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(deleteApiCommandQuery)); - _deleteApiCommandMutation = deleteApiCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteApiCommandMutation)); - _listApiCommandQuery = listApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listApiCommandQuery)); - _setApiSettingsCommandMutation = setApiSettingsCommandMutation ?? throw new global::System.ArgumentNullException(nameof(setApiSettingsCommandMutation)); - _showApiCommandQuery = showApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showApiCommandQuery)); - _createClientCommandMutation = createClientCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createClientCommandMutation)); - _deleteClientByIdCommandMutation = deleteClientByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteClientByIdCommandMutation)); - _listClientCommandQuery = listClientCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listClientCommandQuery)); - _publishClientVersion = publishClientVersion ?? throw new global::System.ArgumentNullException(nameof(publishClientVersion)); - _onClientVersionPublishUpdated = onClientVersionPublishUpdated ?? throw new global::System.ArgumentNullException(nameof(onClientVersionPublishUpdated)); - _showClientCommandQuery = showClientCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showClientCommandQuery)); - _unpublishClient = unpublishClient ?? throw new global::System.ArgumentNullException(nameof(unpublishClient)); - _uploadClient = uploadClient ?? throw new global::System.ArgumentNullException(nameof(uploadClient)); - _validateClientVersion = validateClientVersion ?? throw new global::System.ArgumentNullException(nameof(validateClientVersion)); - _onClientVersionValidationUpdated = onClientVersionValidationUpdated ?? throw new global::System.ArgumentNullException(nameof(onClientVersionValidationUpdated)); - _createEnvironmentCommandMutation = createEnvironmentCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createEnvironmentCommandMutation)); - _listEnvironmentCommandQuery = listEnvironmentCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listEnvironmentCommandQuery)); - _showEnvironmentCommandQuery = showEnvironmentCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showEnvironmentCommandQuery)); - _fetchConfiguration = fetchConfiguration ?? throw new global::System.ArgumentNullException(nameof(fetchConfiguration)); - _uploadFusionSubgraph = uploadFusionSubgraph ?? throw new global::System.ArgumentNullException(nameof(uploadFusionSubgraph)); - _createMcpFeatureCollectionCommandMutation = createMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createMcpFeatureCollectionCommandMutation)); - _deleteMcpFeatureCollectionByIdCommandMutation = deleteMcpFeatureCollectionByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteMcpFeatureCollectionByIdCommandMutation)); - _listMcpFeatureCollectionCommandQuery = listMcpFeatureCollectionCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listMcpFeatureCollectionCommandQuery)); - _publishMcpFeatureCollectionCommandMutation = publishMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(publishMcpFeatureCollectionCommandMutation)); - _publishMcpFeatureCollectionCommandSubscription = publishMcpFeatureCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(publishMcpFeatureCollectionCommandSubscription)); - _uploadMcpFeatureCollectionCommandMutation = uploadMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(uploadMcpFeatureCollectionCommandMutation)); - _validateMcpFeatureCollectionCommandMutation = validateMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(validateMcpFeatureCollectionCommandMutation)); - _validateMcpFeatureCollectionCommandSubscription = validateMcpFeatureCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(validateMcpFeatureCollectionCommandSubscription)); - _createMockSchema = createMockSchema ?? throw new global::System.ArgumentNullException(nameof(createMockSchema)); - _listMockCommandQuery = listMockCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listMockCommandQuery)); - _updateMockSchema = updateMockSchema ?? throw new global::System.ArgumentNullException(nameof(updateMockSchema)); - _createOpenApiCollectionCommandMutation = createOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createOpenApiCollectionCommandMutation)); - _deleteOpenApiCollectionByIdCommandMutation = deleteOpenApiCollectionByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteOpenApiCollectionByIdCommandMutation)); - _listOpenApiCollectionCommandQuery = listOpenApiCollectionCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listOpenApiCollectionCommandQuery)); - _publishOpenApiCollectionCommandMutation = publishOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(publishOpenApiCollectionCommandMutation)); - _publishOpenApiCollectionCommandSubscription = publishOpenApiCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(publishOpenApiCollectionCommandSubscription)); - _uploadOpenApiCollectionCommandMutation = uploadOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(uploadOpenApiCollectionCommandMutation)); - _validateOpenApiCollectionCommandMutation = validateOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(validateOpenApiCollectionCommandMutation)); - _validateOpenApiCollectionCommandSubscription = validateOpenApiCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(validateOpenApiCollectionCommandSubscription)); - _createPersonalAccessTokenCommandMutation = createPersonalAccessTokenCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createPersonalAccessTokenCommandMutation)); - _listPersonalAccessTokenCommandQuery = listPersonalAccessTokenCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listPersonalAccessTokenCommandQuery)); - _revokePersonalAccessTokenCommandMutation = revokePersonalAccessTokenCommandMutation ?? throw new global::System.ArgumentNullException(nameof(revokePersonalAccessTokenCommandMutation)); - _publishSchemaVersion = publishSchemaVersion ?? throw new global::System.ArgumentNullException(nameof(publishSchemaVersion)); - _onSchemaVersionPublishUpdated = onSchemaVersionPublishUpdated ?? throw new global::System.ArgumentNullException(nameof(onSchemaVersionPublishUpdated)); - _uploadSchema = uploadSchema ?? throw new global::System.ArgumentNullException(nameof(uploadSchema)); - _validateSchemaVersion = validateSchemaVersion ?? throw new global::System.ArgumentNullException(nameof(validateSchemaVersion)); - _onSchemaVersionValidationUpdated = onSchemaVersionValidationUpdated ?? throw new global::System.ArgumentNullException(nameof(onSchemaVersionValidationUpdated)); - _updateStages = updateStages ?? throw new global::System.ArgumentNullException(nameof(updateStages)); - _listStagesQuery = listStagesQuery ?? throw new global::System.ArgumentNullException(nameof(listStagesQuery)); - _createWorkspaceCommandMutation = createWorkspaceCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createWorkspaceCommandMutation)); - _listWorkspaceCommandQuery = listWorkspaceCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listWorkspaceCommandQuery)); - _setDefaultWorkspaceCommand_SelectWorkspace_Query = setDefaultWorkspaceCommand_SelectWorkspace_Query ?? throw new global::System.ArgumentNullException(nameof(setDefaultWorkspaceCommand_SelectWorkspace_Query)); - _showWorkspaceCommandQuery = showWorkspaceCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showWorkspaceCommandQuery)); - _selectApiPromptQuery = selectApiPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectApiPromptQuery)); - _pageClientVersionDetailQuery = pageClientVersionDetailQuery ?? throw new global::System.ArgumentNullException(nameof(pageClientVersionDetailQuery)); - _selectClientPromptQuery = selectClientPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectClientPromptQuery)); - _beginFusionConfigurationPublish = beginFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(beginFusionConfigurationPublish)); - _onFusionConfigurationPublishingTaskChanged = onFusionConfigurationPublishingTaskChanged ?? throw new global::System.ArgumentNullException(nameof(onFusionConfigurationPublishingTaskChanged)); - _cancelFusionConfigurationPublish = cancelFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(cancelFusionConfigurationPublish)); - _commitFusionConfigurationPublish = commitFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(commitFusionConfigurationPublish)); - _startFusionConfigurationPublish = startFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(startFusionConfigurationPublish)); - _validateFusionConfigurationPublish = validateFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(validateFusionConfigurationPublish)); - _selectMcpFeatureCollectionPromptQuery = selectMcpFeatureCollectionPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectMcpFeatureCollectionPromptQuery)); - _selectMockSchemaPromptQuery = selectMockSchemaPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectMockSchemaPromptQuery)); - _selectOpenApiCollectionPromptQuery = selectOpenApiCollectionPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectOpenApiCollectionPromptQuery)); - } - - public static global::System.String ClientName => "ApiClient"; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation CreateApiKeyCommandMutation => _createApiKeyCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation DeleteApiKeyCommandMutation => _deleteApiKeyCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery ListApiKeyCommandQuery => _listApiKeyCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation CreateApiCommandMutation => _createApiCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery DeleteApiCommandQuery => _deleteApiCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation DeleteApiCommandMutation => _deleteApiCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery ListApiCommandQuery => _listApiCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation SetApiSettingsCommandMutation => _setApiSettingsCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery ShowApiCommandQuery => _showApiCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation CreateClientCommandMutation => _createClientCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation DeleteClientByIdCommandMutation => _deleteClientByIdCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery ListClientCommandQuery => _listClientCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation PublishClientVersion => _publishClientVersion; - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription OnClientVersionPublishUpdated => _onClientVersionPublishUpdated; - public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery ShowClientCommandQuery => _showClientCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation UnpublishClient => _unpublishClient; - public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation UploadClient => _uploadClient; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation ValidateClientVersion => _validateClientVersion; - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription OnClientVersionValidationUpdated => _onClientVersionValidationUpdated; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation CreateEnvironmentCommandMutation => _createEnvironmentCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery ListEnvironmentCommandQuery => _listEnvironmentCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery ShowEnvironmentCommandQuery => _showEnvironmentCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery FetchConfiguration => _fetchConfiguration; - public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation UploadFusionSubgraph => _uploadFusionSubgraph; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation CreateMcpFeatureCollectionCommandMutation => _createMcpFeatureCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation DeleteMcpFeatureCollectionByIdCommandMutation => _deleteMcpFeatureCollectionByIdCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery ListMcpFeatureCollectionCommandQuery => _listMcpFeatureCollectionCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation PublishMcpFeatureCollectionCommandMutation => _publishMcpFeatureCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription PublishMcpFeatureCollectionCommandSubscription => _publishMcpFeatureCollectionCommandSubscription; - public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation UploadMcpFeatureCollectionCommandMutation => _uploadMcpFeatureCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation ValidateMcpFeatureCollectionCommandMutation => _validateMcpFeatureCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription ValidateMcpFeatureCollectionCommandSubscription => _validateMcpFeatureCollectionCommandSubscription; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation CreateMockSchema => _createMockSchema; - public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery ListMockCommandQuery => _listMockCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation UpdateMockSchema => _updateMockSchema; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation CreateOpenApiCollectionCommandMutation => _createOpenApiCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation DeleteOpenApiCollectionByIdCommandMutation => _deleteOpenApiCollectionByIdCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery ListOpenApiCollectionCommandQuery => _listOpenApiCollectionCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation PublishOpenApiCollectionCommandMutation => _publishOpenApiCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription PublishOpenApiCollectionCommandSubscription => _publishOpenApiCollectionCommandSubscription; - public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation UploadOpenApiCollectionCommandMutation => _uploadOpenApiCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation ValidateOpenApiCollectionCommandMutation => _validateOpenApiCollectionCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription ValidateOpenApiCollectionCommandSubscription => _validateOpenApiCollectionCommandSubscription; - public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation CreatePersonalAccessTokenCommandMutation => _createPersonalAccessTokenCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery ListPersonalAccessTokenCommandQuery => _listPersonalAccessTokenCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation RevokePersonalAccessTokenCommandMutation => _revokePersonalAccessTokenCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation PublishSchemaVersion => _publishSchemaVersion; - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription OnSchemaVersionPublishUpdated => _onSchemaVersionPublishUpdated; - public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation UploadSchema => _uploadSchema; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation ValidateSchemaVersion => _validateSchemaVersion; - public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription OnSchemaVersionValidationUpdated => _onSchemaVersionValidationUpdated; - public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation UpdateStages => _updateStages; - public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery ListStagesQuery => _listStagesQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation CreateWorkspaceCommandMutation => _createWorkspaceCommandMutation; - public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery ListWorkspaceCommandQuery => _listWorkspaceCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery SetDefaultWorkspaceCommand_SelectWorkspace_Query => _setDefaultWorkspaceCommand_SelectWorkspace_Query; - public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery ShowWorkspaceCommandQuery => _showWorkspaceCommandQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery SelectApiPromptQuery => _selectApiPromptQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery PageClientVersionDetailQuery => _pageClientVersionDetailQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery SelectClientPromptQuery => _selectClientPromptQuery; - public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation BeginFusionConfigurationPublish => _beginFusionConfigurationPublish; - public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription OnFusionConfigurationPublishingTaskChanged => _onFusionConfigurationPublishingTaskChanged; - public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation CancelFusionConfigurationPublish => _cancelFusionConfigurationPublish; - public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation CommitFusionConfigurationPublish => _commitFusionConfigurationPublish; - public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation StartFusionConfigurationPublish => _startFusionConfigurationPublish; - public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation ValidateFusionConfigurationPublish => _validateFusionConfigurationPublish; - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery SelectMcpFeatureCollectionPromptQuery => _selectMcpFeatureCollectionPromptQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery SelectMockSchemaPromptQuery => _selectMockSchemaPromptQuery; - public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery SelectOpenApiCollectionPromptQuery => _selectOpenApiCollectionPromptQuery; + global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.ClientInterfaceGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator /// - /// Represents the ApiClient GraphQL client + /// Represents the operation service of the SelectApiPromptQuery GraphQL operation + /// + /// 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 + /// } + /// /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IApiClient - { - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation CreateApiKeyCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation DeleteApiKeyCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery ListApiKeyCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation CreateApiCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery DeleteApiCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation DeleteApiCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery ListApiCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation SetApiSettingsCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery ShowApiCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation CreateClientCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation DeleteClientByIdCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery ListClientCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation PublishClientVersion { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription OnClientVersionPublishUpdated { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery ShowClientCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation UnpublishClient { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation UploadClient { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation ValidateClientVersion { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription OnClientVersionValidationUpdated { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation CreateEnvironmentCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery ListEnvironmentCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery ShowEnvironmentCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery FetchConfiguration { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation UploadFusionSubgraph { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation CreateMcpFeatureCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation DeleteMcpFeatureCollectionByIdCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery ListMcpFeatureCollectionCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation PublishMcpFeatureCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription PublishMcpFeatureCollectionCommandSubscription { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation UploadMcpFeatureCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation ValidateMcpFeatureCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription ValidateMcpFeatureCollectionCommandSubscription { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation CreateMockSchema { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery ListMockCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation UpdateMockSchema { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation CreateOpenApiCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation DeleteOpenApiCollectionByIdCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery ListOpenApiCollectionCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation PublishOpenApiCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription PublishOpenApiCollectionCommandSubscription { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation UploadOpenApiCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation ValidateOpenApiCollectionCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription ValidateOpenApiCollectionCommandSubscription { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation CreatePersonalAccessTokenCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery ListPersonalAccessTokenCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation RevokePersonalAccessTokenCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation PublishSchemaVersion { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription OnSchemaVersionPublishUpdated { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation UploadSchema { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation ValidateSchemaVersion { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription OnSchemaVersionValidationUpdated { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation UpdateStages { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery ListStagesQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation CreateWorkspaceCommandMutation { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery ListWorkspaceCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery SetDefaultWorkspaceCommand_SelectWorkspace_Query { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery ShowWorkspaceCommandQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery SelectApiPromptQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery PageClientVersionDetailQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery SelectClientPromptQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation BeginFusionConfigurationPublish { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription OnFusionConfigurationPublishingTaskChanged { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation CancelFusionConfigurationPublish { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation CommitFusionConfigurationPublish { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation StartFusionConfigurationPublish { get; } - - global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation ValidateFusionConfigurationPublish { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery SelectMcpFeatureCollectionPromptQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery SelectMockSchemaPromptQuery { get; } - - global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery SelectOpenApiCollectionPromptQuery { get; } - } -} - -namespace ChilliCream.Nitro.CommandLine.Client.State -{ - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public CreateApiKeyCommandMutationResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationResult); - - public CreateApiKeyCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is CreateApiKeyCommandMutationResultInfo info) - { - return new CreateApiKeyCommandMutationResult(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey(info.CreateApiKey)); - } - - throw new global::System.ArgumentException("CreateApiKeyCommandMutationResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey MapNonNullableICreateApiKeyCommandMutation_CreateApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData data) - { - ICreateApiKeyCommandMutation_CreateApiKey returnValue = default !; - if (data.__typename.Equals("CreateApiKeyPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(MapICreateApiKeyCommandMutation_CreateApiKey_Result(data.Result), MapICreateApiKeyCommandMutation_CreateApiKey_ErrorsNonNullableArray(data.Errors)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? MapICreateApiKeyCommandMutation_CreateApiKey_Result(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? data) - { - if (data is null) - { - return null; - } - - ICreateApiKeyCommandMutation_CreateApiKey_Result returnValue = default !; - if (data.__typename.Equals("ApiKeyWithSecret", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(data.Key ?? throw new global::System.ArgumentNullException()), data.Secret ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData data) - { - ICreateApiKeyCommandMutation_CreateApiKey_Result_Key returnValue = default !; - if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(data.Workspace)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } - - ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapICreateApiKeyCommandMutation_CreateApiKey_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } - - var createApiKeyErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData child in list) - { - createApiKeyErrors.Add(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors(child)); - } - - return createApiKeyErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Errors MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData data) - { - ICreateApiKeyCommandMutation_CreateApiKey_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundData workspaceNotFound) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(workspaceNotFound.__typename ?? throw new global::System.ArgumentNullException(), workspaceNotFound.Message ?? throw new global::System.ArgumentNullException(), workspaceNotFound.WorkspaceId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersonalWorkspaceNotSupportedErrorData personalWorkspaceNotSupportedError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError(personalWorkspaceNotSupportedError.__typename ?? throw new global::System.ArgumentNullException(), personalWorkspaceNotSupportedError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(validationError.__typename ?? throw new global::System.ArgumentNullException(), validationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(validationError.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.RoleNotFoundErrorData roleNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(roleNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), roleNotFoundError.Message ?? throw new global::System.ArgumentNullException(), roleNotFoundError.RoleId ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var validationErrorPropertys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData child in list) - { - validationErrorPropertys.Add(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(child)); - } - - return validationErrorPropertys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData data) - { - ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors returnValue = default !; - if (data.__typename.Equals("ValidationErrorProperty", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty(data.Message ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public CreateApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData createApiKey) - { - CreateApiKey = createApiKey; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData CreateApiKey { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new CreateApiKeyCommandMutationResultInfo(CreateApiKey); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public DeleteApiKeyCommandMutationResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationResult); - - public DeleteApiKeyCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is DeleteApiKeyCommandMutationResultInfo info) - { - return new DeleteApiKeyCommandMutationResult(MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(info.DeleteApiKey)); - } - - throw new global::System.ArgumentException("DeleteApiKeyCommandMutationResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData data) - { - IDeleteApiKeyCommandMutation_DeleteApiKey returnValue = default !; - if (data.__typename.Equals("DeleteApiKeyPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(MapIDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(data.ApiKey), MapIDeleteApiKeyCommandMutation_DeleteApiKey_ErrorsNonNullableArray(data.Errors)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? MapIDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? data) - { - if (data is null) - { - return null; - } - - IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey returnValue = default !; - if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) - { - returnValue = new DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(data.Workspace)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } - - ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapIDeleteApiKeyCommandMutation_DeleteApiKey_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } - - var deleteApiKeyErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData child in list) - { - deleteApiKeyErrors.Add(MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey_Errors(child)); - } - - return deleteApiKeyErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_Errors MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData data) - { - IDeleteApiKeyCommandMutation_DeleteApiKey_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyNotFoundErrorData apiKeyNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(apiKeyNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiKeyNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiKeyNotFoundError.ApiKeyId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SelectApiPromptQueryQueryDocument : global::StrawberryShake.IDocument { - public DeleteApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData deleteApiKey) + private SelectApiPromptQueryQueryDocument() { - DeleteApiKey = deleteApiKey; } - public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData DeleteApiKey { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + public static SelectApiPromptQueryQueryDocument Instance { get; } = new SelectApiPromptQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a99c8cea1f4c187c4b1a8f615aa22fac"); - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + public override global::System.String ToString() { - return new DeleteApiKeyCommandMutationResultInfo(DeleteApiKey); +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the SelectApiPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectApiPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery { - public ListApiKeyCommandQueryResultFactory() + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _versionFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _versionFormatter = serializerResolver.GetInputValueFormatter("Version"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryResult); - - public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private SelectApiPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter versionFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter) { - if (dataInfo is ListApiKeyCommandQueryResultInfo info) - { - return new ListApiKeyCommandQueryResult(MapIListApiKeyCommandQuery_WorkspaceById(info.WorkspaceById)); - } - - throw new global::System.ArgumentException("ListApiKeyCommandQueryResultInfo expected."); + _operationExecutor = operationExecutor; + _configure = configure; + _versionFormatter = versionFormatter; + _intFormatter = @intFormatter; + _iDFormatter = iDFormatter; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? MapIListApiKeyCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } - - IListApiKeyCommandQuery_WorkspaceById returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiKeyCommandQuery_WorkspaceById_Workspace(MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys(data.ApiKeys)); - } - else - { - throw new global::System.NotSupportedException(); - } + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectApiPromptQueryResult); - return returnValue; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.SelectApiPromptQueryQuery(_operationExecutor, _configure.Add(configure), _versionFormatter, _intFormatter, _iDFormatter); } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? data) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithRequestUri(global::System.Uri requestUri) { - if (data is null) - { - return null; - } - - IListApiKeyCommandQuery_WorkspaceById_ApiKeys returnValue = default !; - if (data.__typename.Equals("ApiKeysConnection", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(data.Edges), MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); + } - return returnValue; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) + { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - private global::System.Collections.Generic.IReadOnlyList? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - if (list is null) + var request = CreateRequest(workspaceId, after, first); + foreach (var configure in _configure) { - return null; + configure(request); } - var apiKeysEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData child in list) - { - apiKeysEdges.Add(MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(child)); - } + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); + } - return apiKeysEdges; + public global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) + { + var request = CreateRequest(workspaceId, after, first); + return _operationExecutor.Watch(request, strategy); } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData data) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String workspaceId, global::System.String? after, global::System.Int32? first) { - IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges returnValue = default !; - if (data.__typename.Equals("ApiKeysEdge", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("workspaceId", FormatWorkspaceId(workspaceId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); + } - return returnValue; + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? 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::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData data) + private global::System.Object? FormatWorkspaceId(global::System.String value) { - IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node returnValue = default !; - if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(data.Workspace)); - } - else + if (value is null) { - throw new global::System.NotSupportedException(); + throw new global::System.ArgumentNullException(nameof(value)); } - return returnValue; + return _iDFormatter.Format(value); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace? MapICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::System.Object? FormatAfter(global::System.String? value) { - if (data is null) - { - return null; - } - - ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + if (value is null) { - returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + return value; } else { - throw new global::System.NotSupportedException(); + return _versionFormatter.Format(value); } - - return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::System.Object? FormatFirst(global::System.Int32? value) { - IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + if (value is null) { - returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + return value; } else { - throw new global::System.NotSupportedException(); + return _intFormatter.Format(value); } - - return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return Create(dataInfo, snapshot); + return CreateRequest(variables!); } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the SelectApiPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial interface ISelectApiPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { - public ListApiKeyCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) + global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String workspaceId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SelectMcpFeatureCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument + { + private SelectMcpFeatureCollectionPromptQueryQueryDocument() { - WorkspaceById = workspaceById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + public static SelectMcpFeatureCollectionPromptQueryQueryDocument Instance { get; } = new SelectMcpFeatureCollectionPromptQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "021d1bafc7178634565bd5543b9e55b7"); - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + public override global::System.String ToString() { - return new ListApiKeyCommandQueryResultInfo(WorkspaceById); +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectMcpFeatureCollectionPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery { - public CreateApiCommandMutationResultFactory() + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationResult); - - public CreateApiCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private SelectMcpFeatureCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { - if (dataInfo is CreateApiCommandMutationResultInfo info) - { - return new CreateApiCommandMutationResult(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges(info.PushWorkspaceChanges)); - } - - throw new global::System.ArgumentException("CreateApiCommandMutationResultInfo expected."); + _operationExecutor = operationExecutor; + _configure = configure; + _stringFormatter = @stringFormatter; + _iDFormatter = iDFormatter; + _intFormatter = @intFormatter; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges returnValue = default !; - if (data.__typename.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(MapICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(data.Changes), MapICreateApiCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(data.Errors)); - } - else - { - throw new global::System.NotSupportedException(); - } + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectMcpFeatureCollectionPromptQueryResult); - return returnValue; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery With(global::System.Action configure) + { + return new global::ChilliCream.Nitro.CommandLine.Client.SelectMcpFeatureCollectionPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - private global::System.Collections.Generic.IReadOnlyList? MapICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri) { - if (list is null) - { - return null; - } - - var workspaceChangePayloads = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData child in list) - { - workspaceChangePayloads.Add(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(child)); - } - - return workspaceChangePayloads; + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData data) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes returnValue = default !; - if (data.__typename.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(data.ReferenceId ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error(data.Error), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result(data.Result)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? data) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - if (data is null) - { - return null; - } - - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData changeValidationFailed) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(changeValidationFailed.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData hasBeenChangedConflict) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(hasBeenChangedConflict.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData hasBeenDeletedConflict) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(hasBeenDeletedConflict.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData identifierCollisionConflict) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(identifierCollisionConflict.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData unexpectedErrorOnChange) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(unexpectedErrorOnChange.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData workspaceNotFoundForChange) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(workspaceNotFoundForChange.Message ?? throw new global::System.ArgumentNullException()); - } - else + var request = CreateRequest(apiId, after, first); + foreach (var configure in _configure) { - throw new global::System.NotSupportedException(); + configure(request); } - return returnValue; + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? data) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - if (data is null) - { - return null; - } - - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(api.Name ?? throw new global::System.ArgumentNullException(), api.Id ?? throw new global::System.ArgumentNullException(), api.Path ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(api.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(api.Settings)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + var request = CreateRequest(apiId, after, first); + return _operationExecutor.Watch(request, strategy); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) { - if (data is null) - { - return null; - } - - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("apiId", FormatApiId(apiId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + return new global::StrawberryShake.OperationRequest(id: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectMcpFeatureCollectionPromptQuery", document: SelectMcpFeatureCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) + private global::System.Object? FormatApiId(global::System.String value) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); - } - else + if (value is null) { - throw new global::System.NotSupportedException(); + throw new global::System.ArgumentNullException(nameof(value)); } - return returnValue; + return _iDFormatter.Format(value); } - private global::System.Collections.Generic.IReadOnlyList? MapICreateApiCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Object? FormatAfter(global::System.String? value) { - if (list is null) + if (value is null) { - return null; + return value; } - - var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData child in list) + else { - pushWorkspaceChangesErrors.Add(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Errors(child)); + return _stringFormatter.Format(value); } - - return pushWorkspaceChangesErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Errors MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData data) + private global::System.Object? FormatFirst(global::System.Int32? value) { - ICreateApiCommandMutation_PushWorkspaceChanges_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData changeStructureInvalid) + if (value is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(changeStructureInvalid.Message ?? throw new global::System.ArgumentNullException()); + return value; } else { - throw new global::System.NotSupportedException(); + return _intFormatter.Format(value); } - - return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return Create(dataInfo, snapshot); + return CreateRequest(variables!); } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the SelectMcpFeatureCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial interface ISelectMcpFeatureCollectionPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { - public CreateApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData pushWorkspaceChanges) - { - PushWorkspaceChanges = pushWorkspaceChanges; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData PushWorkspaceChanges { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new CreateApiCommandMutationResultInfo(PushWorkspaceChanges); - } + global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationDocumentGenerator + /// + /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectOpenApiCollectionPromptQueryQueryDocument : global::StrawberryShake.IDocument { - public DeleteApiCommandQueryResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryResult); - - public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private SelectOpenApiCollectionPromptQueryQueryDocument() { - if (dataInfo is DeleteApiCommandQueryResultInfo info) - { - return new DeleteApiCommandQueryResult(MapIDeleteApiCommandQuery_Node(info.Node)); - } - - throw new global::System.ArgumentException("DeleteApiCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? MapIDeleteApiCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) - { - if (data is null) - { - return null; - } - - IDeleteApiCommandQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Api(api.Name ?? throw new global::System.ArgumentNullException(), api.Version ?? throw new global::System.ArgumentNullException(), MapIDeleteApiCommandQuery_Node_Workspace_1(api.Workspace)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ApiKey(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Client(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Environment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_FusionConfigurationChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_FusionConfigurationDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Group(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Organization(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OrganizationMember(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_SchemaChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_SchemaDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Stage(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_User(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Workspace(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_WorkspaceDocument(); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + public static SelectOpenApiCollectionPromptQueryQueryDocument Instance { get; } = new SelectOpenApiCollectionPromptQueryQueryDocument(); + public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Query; + public global::System.ReadOnlySpan Body => new global::System.Byte[0]; + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "cac7b1f4800fb9c9c07bed47c5bbd775"); - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? MapIDeleteApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + public override global::System.String ToString() { - if (data is null) - { - return null; - } - - IDeleteApiCommandQuery_Node_Workspace_1 returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new DeleteApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; +#if NETCOREAPP3_1_OR_GREATER + return global::System.Text.Encoding.UTF8.GetString(Body); +#else + return global::System.Text.Encoding.UTF8.GetString(Body.ToArray()); +#endif } + } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceGenerator + /// + /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SelectOpenApiCollectionPromptQueryQuery : global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery + { + private readonly global::StrawberryShake.IOperationExecutor _operationExecutor; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _iDFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _stringFormatter; + private readonly global::StrawberryShake.Serialization.IInputValueFormatter _intFormatter; + private readonly global::System.Collections.Immutable.ImmutableArray> _configure = global::System.Collections.Immutable.ImmutableArray>.Empty; + public SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - return Create(dataInfo, snapshot); + _operationExecutor = operationExecutor ?? throw new global::System.ArgumentNullException(nameof(operationExecutor)); + _iDFormatter = serializerResolver.GetInputValueFormatter("ID"); + _stringFormatter = serializerResolver.GetInputValueFormatter("String"); + _intFormatter = serializerResolver.GetInputValueFormatter("Int"); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public DeleteApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + private SelectOpenApiCollectionPromptQueryQuery(global::StrawberryShake.IOperationExecutor operationExecutor, global::System.Collections.Immutable.ImmutableArray> configure, global::StrawberryShake.Serialization.IInputValueFormatter @stringFormatter, global::StrawberryShake.Serialization.IInputValueFormatter iDFormatter, global::StrawberryShake.Serialization.IInputValueFormatter @intFormatter) { - Node = node; + _operationExecutor = operationExecutor; + _configure = configure; + _stringFormatter = @stringFormatter; + _iDFormatter = iDFormatter; + _intFormatter = @intFormatter; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + global::System.Type global::StrawberryShake.IOperationRequestFactory.ResultType => typeof(ISelectOpenApiCollectionPromptQueryResult); - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery With(global::System.Action configure) { - return new DeleteApiCommandQueryResultInfo(Node); + return new global::ChilliCream.Nitro.CommandLine.Client.SelectOpenApiCollectionPromptQueryQuery(_operationExecutor, _configure.Add(configure), _stringFormatter, _iDFormatter, _intFormatter); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public DeleteApiCommandMutationResultFactory() + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri) { + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.RequestUri"] = requestUri); } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationResult); - - public DeleteApiCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient) { - if (dataInfo is DeleteApiCommandMutationResultInfo info) - { - return new DeleteApiCommandMutationResult(MapNonNullableIDeleteApiCommandMutation_DeleteApiById(info.DeleteApiById)); - } - - throw new global::System.ArgumentException("DeleteApiCommandMutationResultInfo expected."); + return With(r => r.ContextData["StrawberryShake.Transport.Http.HttpConnection.HttpClient"] = httpClient); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById MapNonNullableIDeleteApiCommandMutation_DeleteApiById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData data) + public async global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default) { - IDeleteApiCommandMutation_DeleteApiById returnValue = default !; - if (data.__typename.Equals("DeleteApiByIdPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(MapIDeleteApiCommandMutation_DeleteApiById_Api(data.Api), MapIDeleteApiCommandMutation_DeleteApiById_ErrorsNonNullableArray(data.Errors)); - } - else + var request = CreateRequest(apiId, after, first); + foreach (var configure in _configure) { - throw new global::System.NotSupportedException(); + configure(request); } - return returnValue; + return await _operationExecutor.ExecuteAsync(request, cancellationToken).ConfigureAwait(false); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? MapIDeleteApiCommandMutation_DeleteApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + public global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null) { - if (data is null) - { - return null; - } - - IDeleteApiCommandMutation_DeleteApiById_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new DeleteApiCommandMutation_DeleteApiById_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(data.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + var request = CreateRequest(apiId, after, first); + return _operationExecutor.Watch(request, strategy); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.String apiId, global::System.String? after, global::System.Int32? first) { - if (data is null) - { - return null; - } - - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + var variables = new global::System.Collections.Generic.Dictionary(); + variables.Add("apiId", FormatApiId(apiId)); + variables.Add("after", FormatAfter(after)); + variables.Add("first", FormatFirst(first)); + return CreateRequest(variables); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) + private global::StrawberryShake.OperationRequest CreateRequest(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + return new global::StrawberryShake.OperationRequest(id: SelectOpenApiCollectionPromptQueryQueryDocument.Instance.Hash.Value, name: "SelectOpenApiCollectionPromptQuery", document: SelectOpenApiCollectionPromptQueryQueryDocument.Instance, strategy: global::StrawberryShake.RequestStrategy.PersistedOperation, variables: variables); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) + private global::System.Object? FormatApiId(global::System.String value) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); - } - else + if (value is null) { - throw new global::System.NotSupportedException(); + throw new global::System.ArgumentNullException(nameof(value)); } - return returnValue; + return _iDFormatter.Format(value); } - private global::System.Collections.Generic.IReadOnlyList? MapIDeleteApiCommandMutation_DeleteApiById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Object? FormatAfter(global::System.String? value) { - if (list is null) + if (value is null) { - return null; + return value; } - - var deleteApiByIdErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData child in list) + else { - deleteApiByIdErrors.Add(MapNonNullableIDeleteApiCommandMutation_DeleteApiById_Errors(child)); + return _stringFormatter.Format(value); } - - return deleteApiByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Errors MapNonNullableIDeleteApiCommandMutation_DeleteApiById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData data) + private global::System.Object? FormatFirst(global::System.Int32? value) { - IDeleteApiCommandMutation_DeleteApiById_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDeletionFailedErrorData apiDeletionFailedError) + if (value is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(apiDeletionFailedError.Message ?? throw new global::System.ArgumentNullException()); + return value; } else { - throw new global::System.NotSupportedException(); + return _intFormatter.Format(value); } - - return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + global::StrawberryShake.OperationRequest global::StrawberryShake.IOperationRequestFactory.Create(global::System.Collections.Generic.IReadOnlyDictionary? variables) { - return Create(dataInfo, snapshot); + return CreateRequest(variables!); } } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.OperationServiceInterfaceGenerator + /// + /// Represents the operation service of the SelectOpenApiCollectionPromptQuery GraphQL operation + /// + /// 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 + /// } + /// + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial interface ISelectOpenApiCollectionPromptQueryQuery : global::StrawberryShake.IOperationRequestFactory { - public DeleteApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData deleteApiById) - { - DeleteApiById = deleteApiById; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData DeleteApiById { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new DeleteApiCommandMutationResultInfo(DeleteApiById); - } + global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery With(global::System.Action configure); + global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithRequestUri(global::System.Uri requestUri); + global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery WithHttpClient(global::System.Net.Http.HttpClient httpClient); + global::System.Threading.Tasks.Task> ExecuteAsync(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::System.Threading.CancellationToken cancellationToken = default); + global::System.IObservable> Watch(global::System.String apiId, global::System.String? after, global::System.Int32? first, global::StrawberryShake.ExecutionStrategy? strategy = null); } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + // StrawberryShake.CodeGeneration.CSharp.Generators.ClientGenerator + /// + /// Represents the ApiClient GraphQL client + /// [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ApiClient : global::ChilliCream.Nitro.CommandLine.Client.IApiClient { - public ListApiCommandQueryResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryResult); - - public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation _uploadFusionSubgraph; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery _fetchConfiguration; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation _createMockSchema; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation _updateMockSchema; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery _listMockCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery _showClientCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation _unpublishClient; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation _uploadClient; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation _validateClientVersion; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription _onClientVersionValidationUpdated; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation _deleteClientByIdCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation _publishClientVersion; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription _onClientVersionPublishUpdated; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery _listClientCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation _createClientCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery _showApiCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery _deleteApiCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation _deleteApiCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery _listApiCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation _setApiSettingsCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation _createApiCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation _updateStages; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery _listStagesQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery _listEnvironmentCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery _showEnvironmentCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation _createEnvironmentCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery _listApiKeyCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation _createApiKeyCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation _deleteApiKeyCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation _uploadMcpFeatureCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation _validateMcpFeatureCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription _validateMcpFeatureCollectionCommandSubscription; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation _deleteMcpFeatureCollectionByIdCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation _createMcpFeatureCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery _listMcpFeatureCollectionCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation _publishMcpFeatureCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription _publishMcpFeatureCollectionCommandSubscription; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery _listPersonalAccessTokenCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation _createPersonalAccessTokenCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation _revokePersonalAccessTokenCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation _uploadOpenApiCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery _listOpenApiCollectionCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation _publishOpenApiCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription _publishOpenApiCollectionCommandSubscription; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation _validateOpenApiCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription _validateOpenApiCollectionCommandSubscription; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation _createOpenApiCollectionCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation _deleteOpenApiCollectionByIdCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery _showWorkspaceCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation _createWorkspaceCommandMutation; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery _listWorkspaceCommandQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery _setDefaultWorkspaceCommand_SelectWorkspace_Query; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation _publishSchemaVersion; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription _onSchemaVersionPublishUpdated; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation _uploadSchema; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation _validateSchemaVersion; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription _onSchemaVersionValidationUpdated; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation _cancelFusionConfigurationPublish; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation _commitFusionConfigurationPublish; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation _startFusionConfigurationPublish; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation _beginFusionConfigurationPublish; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription _onFusionConfigurationPublishingTaskChanged; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation _validateFusionConfigurationPublish; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery _selectMockSchemaPromptQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery _pageClientVersionDetailQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery _selectClientPromptQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery _selectApiPromptQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery _selectMcpFeatureCollectionPromptQuery; + private readonly global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery _selectOpenApiCollectionPromptQuery; + public ApiClient(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation uploadFusionSubgraph, global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery fetchConfiguration, global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation createMockSchema, global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation updateMockSchema, global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery listMockCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery showClientCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation unpublishClient, global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation uploadClient, global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation validateClientVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription onClientVersionValidationUpdated, global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation deleteClientByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation publishClientVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription onClientVersionPublishUpdated, global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery listClientCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation createClientCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery showApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery deleteApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation deleteApiCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery listApiCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation setApiSettingsCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation createApiCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation updateStages, global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery listStagesQuery, global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery listEnvironmentCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery showEnvironmentCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation createEnvironmentCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery listApiKeyCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation createApiKeyCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation deleteApiKeyCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation uploadMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation validateMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription validateMcpFeatureCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation deleteMcpFeatureCollectionByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation createMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery listMcpFeatureCollectionCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation publishMcpFeatureCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription publishMcpFeatureCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery listPersonalAccessTokenCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation createPersonalAccessTokenCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation revokePersonalAccessTokenCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation uploadOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery listOpenApiCollectionCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation publishOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription publishOpenApiCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation validateOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription validateOpenApiCollectionCommandSubscription, global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation createOpenApiCollectionCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation deleteOpenApiCollectionByIdCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery showWorkspaceCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation createWorkspaceCommandMutation, global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery listWorkspaceCommandQuery, global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery setDefaultWorkspaceCommand_SelectWorkspace_Query, global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation publishSchemaVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription onSchemaVersionPublishUpdated, global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation uploadSchema, global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation validateSchemaVersion, global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription onSchemaVersionValidationUpdated, global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation cancelFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation commitFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation startFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation beginFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription onFusionConfigurationPublishingTaskChanged, global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation validateFusionConfigurationPublish, global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery selectMockSchemaPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery pageClientVersionDetailQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery selectClientPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery selectApiPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery selectMcpFeatureCollectionPromptQuery, global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery selectOpenApiCollectionPromptQuery) { - if (dataInfo is ListApiCommandQueryResultInfo info) - { - return new ListApiCommandQueryResult(MapIListApiCommandQuery_WorkspaceById(info.WorkspaceById)); - } - - throw new global::System.ArgumentException("ListApiCommandQueryResultInfo expected."); + _uploadFusionSubgraph = uploadFusionSubgraph ?? throw new global::System.ArgumentNullException(nameof(uploadFusionSubgraph)); + _fetchConfiguration = fetchConfiguration ?? throw new global::System.ArgumentNullException(nameof(fetchConfiguration)); + _createMockSchema = createMockSchema ?? throw new global::System.ArgumentNullException(nameof(createMockSchema)); + _updateMockSchema = updateMockSchema ?? throw new global::System.ArgumentNullException(nameof(updateMockSchema)); + _listMockCommandQuery = listMockCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listMockCommandQuery)); + _showClientCommandQuery = showClientCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showClientCommandQuery)); + _unpublishClient = unpublishClient ?? throw new global::System.ArgumentNullException(nameof(unpublishClient)); + _uploadClient = uploadClient ?? throw new global::System.ArgumentNullException(nameof(uploadClient)); + _validateClientVersion = validateClientVersion ?? throw new global::System.ArgumentNullException(nameof(validateClientVersion)); + _onClientVersionValidationUpdated = onClientVersionValidationUpdated ?? throw new global::System.ArgumentNullException(nameof(onClientVersionValidationUpdated)); + _deleteClientByIdCommandMutation = deleteClientByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteClientByIdCommandMutation)); + _publishClientVersion = publishClientVersion ?? throw new global::System.ArgumentNullException(nameof(publishClientVersion)); + _onClientVersionPublishUpdated = onClientVersionPublishUpdated ?? throw new global::System.ArgumentNullException(nameof(onClientVersionPublishUpdated)); + _listClientCommandQuery = listClientCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listClientCommandQuery)); + _createClientCommandMutation = createClientCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createClientCommandMutation)); + _showApiCommandQuery = showApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showApiCommandQuery)); + _deleteApiCommandQuery = deleteApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(deleteApiCommandQuery)); + _deleteApiCommandMutation = deleteApiCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteApiCommandMutation)); + _listApiCommandQuery = listApiCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listApiCommandQuery)); + _setApiSettingsCommandMutation = setApiSettingsCommandMutation ?? throw new global::System.ArgumentNullException(nameof(setApiSettingsCommandMutation)); + _createApiCommandMutation = createApiCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createApiCommandMutation)); + _updateStages = updateStages ?? throw new global::System.ArgumentNullException(nameof(updateStages)); + _listStagesQuery = listStagesQuery ?? throw new global::System.ArgumentNullException(nameof(listStagesQuery)); + _listEnvironmentCommandQuery = listEnvironmentCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listEnvironmentCommandQuery)); + _showEnvironmentCommandQuery = showEnvironmentCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showEnvironmentCommandQuery)); + _createEnvironmentCommandMutation = createEnvironmentCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createEnvironmentCommandMutation)); + _listApiKeyCommandQuery = listApiKeyCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listApiKeyCommandQuery)); + _createApiKeyCommandMutation = createApiKeyCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createApiKeyCommandMutation)); + _deleteApiKeyCommandMutation = deleteApiKeyCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteApiKeyCommandMutation)); + _uploadMcpFeatureCollectionCommandMutation = uploadMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(uploadMcpFeatureCollectionCommandMutation)); + _validateMcpFeatureCollectionCommandMutation = validateMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(validateMcpFeatureCollectionCommandMutation)); + _validateMcpFeatureCollectionCommandSubscription = validateMcpFeatureCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(validateMcpFeatureCollectionCommandSubscription)); + _deleteMcpFeatureCollectionByIdCommandMutation = deleteMcpFeatureCollectionByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteMcpFeatureCollectionByIdCommandMutation)); + _createMcpFeatureCollectionCommandMutation = createMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createMcpFeatureCollectionCommandMutation)); + _listMcpFeatureCollectionCommandQuery = listMcpFeatureCollectionCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listMcpFeatureCollectionCommandQuery)); + _publishMcpFeatureCollectionCommandMutation = publishMcpFeatureCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(publishMcpFeatureCollectionCommandMutation)); + _publishMcpFeatureCollectionCommandSubscription = publishMcpFeatureCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(publishMcpFeatureCollectionCommandSubscription)); + _listPersonalAccessTokenCommandQuery = listPersonalAccessTokenCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listPersonalAccessTokenCommandQuery)); + _createPersonalAccessTokenCommandMutation = createPersonalAccessTokenCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createPersonalAccessTokenCommandMutation)); + _revokePersonalAccessTokenCommandMutation = revokePersonalAccessTokenCommandMutation ?? throw new global::System.ArgumentNullException(nameof(revokePersonalAccessTokenCommandMutation)); + _uploadOpenApiCollectionCommandMutation = uploadOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(uploadOpenApiCollectionCommandMutation)); + _listOpenApiCollectionCommandQuery = listOpenApiCollectionCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listOpenApiCollectionCommandQuery)); + _publishOpenApiCollectionCommandMutation = publishOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(publishOpenApiCollectionCommandMutation)); + _publishOpenApiCollectionCommandSubscription = publishOpenApiCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(publishOpenApiCollectionCommandSubscription)); + _validateOpenApiCollectionCommandMutation = validateOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(validateOpenApiCollectionCommandMutation)); + _validateOpenApiCollectionCommandSubscription = validateOpenApiCollectionCommandSubscription ?? throw new global::System.ArgumentNullException(nameof(validateOpenApiCollectionCommandSubscription)); + _createOpenApiCollectionCommandMutation = createOpenApiCollectionCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createOpenApiCollectionCommandMutation)); + _deleteOpenApiCollectionByIdCommandMutation = deleteOpenApiCollectionByIdCommandMutation ?? throw new global::System.ArgumentNullException(nameof(deleteOpenApiCollectionByIdCommandMutation)); + _showWorkspaceCommandQuery = showWorkspaceCommandQuery ?? throw new global::System.ArgumentNullException(nameof(showWorkspaceCommandQuery)); + _createWorkspaceCommandMutation = createWorkspaceCommandMutation ?? throw new global::System.ArgumentNullException(nameof(createWorkspaceCommandMutation)); + _listWorkspaceCommandQuery = listWorkspaceCommandQuery ?? throw new global::System.ArgumentNullException(nameof(listWorkspaceCommandQuery)); + _setDefaultWorkspaceCommand_SelectWorkspace_Query = setDefaultWorkspaceCommand_SelectWorkspace_Query ?? throw new global::System.ArgumentNullException(nameof(setDefaultWorkspaceCommand_SelectWorkspace_Query)); + _publishSchemaVersion = publishSchemaVersion ?? throw new global::System.ArgumentNullException(nameof(publishSchemaVersion)); + _onSchemaVersionPublishUpdated = onSchemaVersionPublishUpdated ?? throw new global::System.ArgumentNullException(nameof(onSchemaVersionPublishUpdated)); + _uploadSchema = uploadSchema ?? throw new global::System.ArgumentNullException(nameof(uploadSchema)); + _validateSchemaVersion = validateSchemaVersion ?? throw new global::System.ArgumentNullException(nameof(validateSchemaVersion)); + _onSchemaVersionValidationUpdated = onSchemaVersionValidationUpdated ?? throw new global::System.ArgumentNullException(nameof(onSchemaVersionValidationUpdated)); + _cancelFusionConfigurationPublish = cancelFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(cancelFusionConfigurationPublish)); + _commitFusionConfigurationPublish = commitFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(commitFusionConfigurationPublish)); + _startFusionConfigurationPublish = startFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(startFusionConfigurationPublish)); + _beginFusionConfigurationPublish = beginFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(beginFusionConfigurationPublish)); + _onFusionConfigurationPublishingTaskChanged = onFusionConfigurationPublishingTaskChanged ?? throw new global::System.ArgumentNullException(nameof(onFusionConfigurationPublishingTaskChanged)); + _validateFusionConfigurationPublish = validateFusionConfigurationPublish ?? throw new global::System.ArgumentNullException(nameof(validateFusionConfigurationPublish)); + _selectMockSchemaPromptQuery = selectMockSchemaPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectMockSchemaPromptQuery)); + _pageClientVersionDetailQuery = pageClientVersionDetailQuery ?? throw new global::System.ArgumentNullException(nameof(pageClientVersionDetailQuery)); + _selectClientPromptQuery = selectClientPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectClientPromptQuery)); + _selectApiPromptQuery = selectApiPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectApiPromptQuery)); + _selectMcpFeatureCollectionPromptQuery = selectMcpFeatureCollectionPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectMcpFeatureCollectionPromptQuery)); + _selectOpenApiCollectionPromptQuery = selectOpenApiCollectionPromptQuery ?? throw new global::System.ArgumentNullException(nameof(selectOpenApiCollectionPromptQuery)); } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? MapIListApiCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } + public static global::System.String ClientName => "ApiClient"; + public global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation UploadFusionSubgraph => _uploadFusionSubgraph; + public global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery FetchConfiguration => _fetchConfiguration; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation CreateMockSchema => _createMockSchema; + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation UpdateMockSchema => _updateMockSchema; + public global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery ListMockCommandQuery => _listMockCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery ShowClientCommandQuery => _showClientCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation UnpublishClient => _unpublishClient; + public global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation UploadClient => _uploadClient; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation ValidateClientVersion => _validateClientVersion; + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription OnClientVersionValidationUpdated => _onClientVersionValidationUpdated; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation DeleteClientByIdCommandMutation => _deleteClientByIdCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation PublishClientVersion => _publishClientVersion; + public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription OnClientVersionPublishUpdated => _onClientVersionPublishUpdated; + public global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery ListClientCommandQuery => _listClientCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation CreateClientCommandMutation => _createClientCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery ShowApiCommandQuery => _showApiCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery DeleteApiCommandQuery => _deleteApiCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation DeleteApiCommandMutation => _deleteApiCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery ListApiCommandQuery => _listApiCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation SetApiSettingsCommandMutation => _setApiSettingsCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation CreateApiCommandMutation => _createApiCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation UpdateStages => _updateStages; + public global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery ListStagesQuery => _listStagesQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery ListEnvironmentCommandQuery => _listEnvironmentCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery ShowEnvironmentCommandQuery => _showEnvironmentCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation CreateEnvironmentCommandMutation => _createEnvironmentCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery ListApiKeyCommandQuery => _listApiKeyCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation CreateApiKeyCommandMutation => _createApiKeyCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation DeleteApiKeyCommandMutation => _deleteApiKeyCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation UploadMcpFeatureCollectionCommandMutation => _uploadMcpFeatureCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation ValidateMcpFeatureCollectionCommandMutation => _validateMcpFeatureCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription ValidateMcpFeatureCollectionCommandSubscription => _validateMcpFeatureCollectionCommandSubscription; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation DeleteMcpFeatureCollectionByIdCommandMutation => _deleteMcpFeatureCollectionByIdCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation CreateMcpFeatureCollectionCommandMutation => _createMcpFeatureCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery ListMcpFeatureCollectionCommandQuery => _listMcpFeatureCollectionCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation PublishMcpFeatureCollectionCommandMutation => _publishMcpFeatureCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription PublishMcpFeatureCollectionCommandSubscription => _publishMcpFeatureCollectionCommandSubscription; + public global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery ListPersonalAccessTokenCommandQuery => _listPersonalAccessTokenCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation CreatePersonalAccessTokenCommandMutation => _createPersonalAccessTokenCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation RevokePersonalAccessTokenCommandMutation => _revokePersonalAccessTokenCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation UploadOpenApiCollectionCommandMutation => _uploadOpenApiCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery ListOpenApiCollectionCommandQuery => _listOpenApiCollectionCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation PublishOpenApiCollectionCommandMutation => _publishOpenApiCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription PublishOpenApiCollectionCommandSubscription => _publishOpenApiCollectionCommandSubscription; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation ValidateOpenApiCollectionCommandMutation => _validateOpenApiCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription ValidateOpenApiCollectionCommandSubscription => _validateOpenApiCollectionCommandSubscription; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation CreateOpenApiCollectionCommandMutation => _createOpenApiCollectionCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation DeleteOpenApiCollectionByIdCommandMutation => _deleteOpenApiCollectionByIdCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery ShowWorkspaceCommandQuery => _showWorkspaceCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation CreateWorkspaceCommandMutation => _createWorkspaceCommandMutation; + public global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery ListWorkspaceCommandQuery => _listWorkspaceCommandQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery SetDefaultWorkspaceCommand_SelectWorkspace_Query => _setDefaultWorkspaceCommand_SelectWorkspace_Query; + public global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation PublishSchemaVersion => _publishSchemaVersion; + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription OnSchemaVersionPublishUpdated => _onSchemaVersionPublishUpdated; + public global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation UploadSchema => _uploadSchema; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation ValidateSchemaVersion => _validateSchemaVersion; + public global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription OnSchemaVersionValidationUpdated => _onSchemaVersionValidationUpdated; + public global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation CancelFusionConfigurationPublish => _cancelFusionConfigurationPublish; + public global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation CommitFusionConfigurationPublish => _commitFusionConfigurationPublish; + public global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation StartFusionConfigurationPublish => _startFusionConfigurationPublish; + public global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation BeginFusionConfigurationPublish => _beginFusionConfigurationPublish; + public global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription OnFusionConfigurationPublishingTaskChanged => _onFusionConfigurationPublishingTaskChanged; + public global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation ValidateFusionConfigurationPublish => _validateFusionConfigurationPublish; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery SelectMockSchemaPromptQuery => _selectMockSchemaPromptQuery; + public global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery PageClientVersionDetailQuery => _pageClientVersionDetailQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery SelectClientPromptQuery => _selectClientPromptQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery SelectApiPromptQuery => _selectApiPromptQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery SelectMcpFeatureCollectionPromptQuery => _selectMcpFeatureCollectionPromptQuery; + public global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery SelectOpenApiCollectionPromptQuery => _selectOpenApiCollectionPromptQuery; + } - IListApiCommandQuery_WorkspaceById returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiCommandQuery_WorkspaceById_Workspace(MapIListApiCommandQuery_WorkspaceById_Apis(data.Apis)); - } - else - { - throw new global::System.NotSupportedException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ClientInterfaceGenerator + /// + /// Represents the ApiClient GraphQL client + /// + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IApiClient + { + global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphMutation UploadFusionSubgraph { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationQuery FetchConfiguration { get; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? MapIListApiCommandQuery_WorkspaceById_Apis(global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaMutation CreateMockSchema { get; } - IListApiCommandQuery_WorkspaceById_Apis returnValue = default !; - if (data.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(MapIListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(data.Edges), MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaMutation UpdateMockSchema { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryQuery ListMockCommandQuery { get; } - private global::System.Collections.Generic.IReadOnlyList? MapIListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryQuery ShowClientCommandQuery { get; } - var apisEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData child in list) - { - apisEdges.Add(MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(child)); - } + global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientMutation UnpublishClient { get; } - return apisEdges; - } + global::ChilliCream.Nitro.CommandLine.Client.IUploadClientMutation UploadClient { get; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData data) - { - IListApiCommandQuery_WorkspaceById_Apis_Edges returnValue = default !; - if (data.__typename.Equals("ApisEdge", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionMutation ValidateClientVersion { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedSubscription OnClientVersionValidationUpdated { get; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData data) - { - IListApiCommandQuery_WorkspaceById_Apis_Edges_Node returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(data.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationMutation DeleteClientByIdCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionMutation PublishClientVersion { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedSubscription OnClientVersionPublishUpdated { get; } - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryQuery ListClientCommandQuery { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationMutation CreateClientCommandMutation { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryQuery ShowApiCommandQuery { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryQuery DeleteApiCommandQuery { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationMutation DeleteApiCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryQuery ListApiCommandQuery { get; } - private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - IListApiCommandQuery_WorkspaceById_Apis_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) - { - returnValue = new ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationMutation SetApiSettingsCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationMutation CreateApiCommandMutation { get; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } + global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesMutation UpdateStages { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ListApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) - { - WorkspaceById = workspaceById; - } + global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryQuery ListStagesQuery { get; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryQuery ListEnvironmentCommandQuery { get; } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ListApiCommandQueryResultInfo(WorkspaceById); - } - } + global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryQuery ShowEnvironmentCommandQuery { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public SetApiSettingsCommandMutationResultFactory() - { - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationMutation CreateEnvironmentCommandMutation { get; } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationResult); + global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryQuery ListApiKeyCommandQuery { get; } - public SetApiSettingsCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is SetApiSettingsCommandMutationResultInfo info) - { - return new SetApiSettingsCommandMutationResult(MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings(info.UpdateApiSettings)); - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationMutation CreateApiKeyCommandMutation { get; } - throw new global::System.ArgumentException("SetApiSettingsCommandMutationResultInfo expected."); - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationMutation DeleteApiKeyCommandMutation { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData data) - { - ISetApiSettingsCommandMutation_UpdateApiSettings returnValue = default !; - if (data.__typename.Equals("UpdateApiSettingsPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload(MapISetApiSettingsCommandMutation_UpdateApiSettings_Api(data.Api), MapISetApiSettingsCommandMutation_UpdateApiSettings_ErrorsNonNullableArray(data.Errors)); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationMutation UploadMcpFeatureCollectionCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationMutation ValidateMcpFeatureCollectionCommandMutation { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? MapISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionSubscription ValidateMcpFeatureCollectionCommandSubscription { get; } - ISetApiSettingsCommandMutation_UpdateApiSettings_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(data.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationMutation DeleteMcpFeatureCollectionByIdCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationMutation CreateMcpFeatureCollectionCommandMutation { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryQuery ListMcpFeatureCollectionCommandQuery { get; } - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationMutation PublishMcpFeatureCollectionCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionSubscription PublishMcpFeatureCollectionCommandSubscription { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryQuery ListPersonalAccessTokenCommandQuery { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationMutation CreatePersonalAccessTokenCommandMutation { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationMutation RevokePersonalAccessTokenCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationMutation UploadOpenApiCollectionCommandMutation { get; } - private global::System.Collections.Generic.IReadOnlyList? MapISetApiSettingsCommandMutation_UpdateApiSettings_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryQuery ListOpenApiCollectionCommandQuery { get; } - var updateApiSettingsErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData child in list) - { - updateApiSettingsErrors.Add(MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings_Errors(child)); - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationMutation PublishOpenApiCollectionCommandMutation { get; } - return updateApiSettingsErrors; - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionSubscription PublishOpenApiCollectionCommandSubscription { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Errors MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData data) - { - ISetApiSettingsCommandMutation_UpdateApiSettings_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationMutation ValidateOpenApiCollectionCommandMutation { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionSubscription ValidateOpenApiCollectionCommandSubscription { get; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationMutation CreateOpenApiCollectionCommandMutation { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public SetApiSettingsCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData updateApiSettings) - { - UpdateApiSettings = updateApiSettings; - } + global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationMutation DeleteOpenApiCollectionByIdCommandMutation { get; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData UpdateApiSettings { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryQuery ShowWorkspaceCommandQuery { get; } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new SetApiSettingsCommandMutationResultInfo(UpdateApiSettings); - } - } + global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationMutation CreateWorkspaceCommandMutation { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ShowApiCommandQueryResultFactory() - { - } + global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryQuery ListWorkspaceCommandQuery { get; } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryResult); + global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryQuery SetDefaultWorkspaceCommand_SelectWorkspace_Query { get; } - public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ShowApiCommandQueryResultInfo info) - { - return new ShowApiCommandQueryResult(MapIShowApiCommandQuery_Node(info.Node)); - } + global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionMutation PublishSchemaVersion { get; } - throw new global::System.ArgumentException("ShowApiCommandQueryResultInfo expected."); - } + global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedSubscription OnSchemaVersionPublishUpdated { get; } - private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? MapIShowApiCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaMutation UploadSchema { get; } - IShowApiCommandQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Api(api.Id ?? throw new global::System.ArgumentNullException(), api.Name ?? throw new global::System.ArgumentNullException(), api.Path ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(api.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(api.Settings)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ApiKey(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Client(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_CoordinateClientUsageMetrics(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Environment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_FusionConfigurationChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_FusionConfigurationDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLDirectiveDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLEnumValueDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Group(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Organization(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OrganizationMember(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_SchemaChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_SchemaDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Stage(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_User(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Workspace(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_WorkspaceDocument(); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionMutation ValidateSchemaVersion { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedSubscription OnSchemaVersionValidationUpdated { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) - { - if (data is null) - { - return null; - } + global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishMutation CancelFusionConfigurationPublish { get; } - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishMutation CommitFusionConfigurationPublish { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishMutation StartFusionConfigurationPublish { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IBeginFusionConfigurationPublishMutation BeginFusionConfigurationPublish { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.IOnFusionConfigurationPublishingTaskChangedSubscription OnFusionConfigurationPublishingTaskChanged { get; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) - { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishMutation ValidateFusionConfigurationPublish { get; } - return returnValue; - } + global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryQuery SelectMockSchemaPromptQuery { get; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } + global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryQuery PageClientVersionDetailQuery { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ShowApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) - { - Node = node; - } + global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryQuery SelectClientPromptQuery { get; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryQuery SelectApiPromptQuery { get; } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ShowApiCommandQueryResultInfo(Node); - } + global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryQuery SelectMcpFeatureCollectionPromptQuery { get; } + + global::ChilliCream.Nitro.CommandLine.Client.ISelectOpenApiCollectionPromptQueryQuery SelectOpenApiCollectionPromptQuery { get; } } +} +namespace ChilliCream.Nitro.CommandLine.Client.State +{ // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class UploadFusionSubgraphResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CreateClientCommandMutationResultFactory() + public UploadFusionSubgraphResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphResult); - public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CreateClientCommandMutationResultInfo info) + if (dataInfo is UploadFusionSubgraphResultInfo info) { - return new CreateClientCommandMutationResult(MapNonNullableICreateClientCommandMutation_CreateClient(info.CreateClient)); + return new UploadFusionSubgraphResult(MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph(info.UploadFusionSubgraph)); } - throw new global::System.ArgumentException("CreateClientCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("UploadFusionSubgraphResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient MapNonNullableICreateClientCommandMutation_CreateClient(global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData data) { - ICreateClientCommandMutation_CreateClient returnValue = default !; - if (data.__typename.Equals("CreateClientPayload", global::System.StringComparison.Ordinal)) + IUploadFusionSubgraph_UploadFusionSubgraph returnValue = default !; + if (data.__typename.Equals("UploadFusionSubgraphPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_CreateClientPayload(MapICreateClientCommandMutation_CreateClient_Client(data.Client), MapICreateClientCommandMutation_CreateClient_ErrorsNonNullableArray(data.Errors)); + returnValue = new UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(MapIUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(data.FusionSubgraphVersion), MapIUploadFusionSubgraph_UploadFusionSubgraph_ErrorsNonNullableArray(data.Errors)); } else { @@ -172371,17 +172614,17 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? MapICreateClientCommandMutation_CreateClient_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? MapIUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? data) { if (data is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion returnValue = default !; + if (data.__typename.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Client(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapICreateClientCommandMutation_CreateClient_Client_Api(data.Api), MapICreateClientCommandMutation_CreateClient_Client_Versions(data.Versions)); + returnValue = new UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -172391,68 +172634,48 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? MapICreateClientCommandMutation_CreateClient_Client_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::System.Collections.Generic.IReadOnlyList? MapIUploadFusionSubgraph_UploadFusionSubgraph_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); - } - else + var uploadFusionSubgraphErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData child in list) { - throw new global::System.NotSupportedException(); + uploadFusionSubgraphErrors.Add(MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph_Errors(child)); } - return returnValue; + return uploadFusionSubgraphErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? MapICreateClientCommandMutation_CreateClient_Client_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_Errors MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData data) { - if (data is null) + IUploadFusionSubgraph_UploadFusionSubgraph_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidFusionSourceSchemaArchiveErrorData invalidFusionSourceSchemaArchiveError) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError(invalidFusionSourceSchemaArchiveError.Message ?? throw new global::System.ArgumentNullException()); } - - ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) { - clientVersionEdges.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); } - - return clientVersionEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -172462,113 +172685,62 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + return Create(dataInfo, snapshot); } + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadFusionSubgraphResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public UploadFusionSubgraphResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData uploadFusionSubgraph) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) - { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); - } - - return publishedClientVersions; + UploadFusionSubgraph = uploadFusionSubgraph; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); - } - else - { - throw new global::System.NotSupportedException(); - } + public global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData UploadFusionSubgraph { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; - return returnValue; + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new UploadFusionSubgraphResultInfo(UploadFusionSubgraph); } + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class FetchConfigurationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public FetchConfigurationResultFactory() { - if (data is null) - { - return null; - } - - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationResult); + + public FetchConfigurationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); - } - else + if (dataInfo is FetchConfigurationResultInfo info) { - throw new global::System.NotSupportedException(); + return new FetchConfigurationResult(MapIFetchConfiguration_FusionConfigurationByApiId(info.FusionConfigurationByApiId)); } - return returnValue; + throw new global::System.ArgumentException("FetchConfigurationResultInfo expected."); } - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? MapIFetchConfiguration_FusionConfigurationByApiId(global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? data) { - if (list is null) + if (data is null) { return null; } - var createClientErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData child in list) - { - createClientErrors.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Errors(child)); - } - - return createClientErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Errors MapNonNullableICreateClientCommandMutation_CreateClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData data) - { - ICreateClientCommandMutation_CreateClient_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IFetchConfiguration_FusionConfigurationByApiId returnValue = default !; + if (data.__typename.Equals("FusionConfiguration", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(data.DownloadUrl ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException()); } else { @@ -172586,49 +172758,49 @@ public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperati // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class FetchConfigurationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreateClientCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData createClient) + public FetchConfigurationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? fusionConfigurationByApiId) { - CreateClient = createClient; + FusionConfigurationByApiId = fusionConfigurationByApiId; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData CreateClient { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? FusionConfigurationByApiId { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreateClientCommandMutationResultInfo(CreateClient); + return new FetchConfigurationResultInfo(FusionConfigurationByApiId); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public DeleteClientByIdCommandMutationResultFactory() + public CreateMockSchemaResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaResult); - public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is DeleteClientByIdCommandMutationResultInfo info) + if (dataInfo is CreateMockSchemaResultInfo info) { - return new DeleteClientByIdCommandMutationResult(MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById(info.DeleteClientById)); + return new CreateMockSchemaResult(MapNonNullableICreateMockSchema_CreateMockSchema(info.CreateMockSchema)); } - throw new global::System.ArgumentException("DeleteClientByIdCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("CreateMockSchemaResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema MapNonNullableICreateMockSchema_CreateMockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData data) { - IDeleteClientByIdCommandMutation_DeleteClientById returnValue = default !; - if (data.__typename.Equals("DeleteClientByIdPayload", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema returnValue = default !; + if (data.__typename.Equals("CreateMockSchemaPayload", global::System.StringComparison.Ordinal)) { - returnValue = new DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload(MapIDeleteClientByIdCommandMutation_DeleteClientById_Client(data.Client), MapIDeleteClientByIdCommandMutation_DeleteClientById_ErrorsNonNullableArray(data.Errors)); + returnValue = new CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(MapICreateMockSchema_CreateMockSchema_MockSchema(data.MockSchema), MapICreateMockSchema_CreateMockSchema_ErrorsNonNullableArray(data.Errors)); } else { @@ -172638,17 +172810,17 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? MapIDeleteClientByIdCommandMutation_DeleteClientById_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MapICreateMockSchema_CreateMockSchema_MockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? data) { if (data is null) { return null; } - IDeleteClientByIdCommandMutation_DeleteClientById_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema returnValue = default !; + if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) { - returnValue = new DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapICreateClientCommandMutation_CreateClient_Client_Api(data.Api), MapICreateClientCommandMutation_CreateClient_Client_Versions(data.Versions)); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); } else { @@ -172658,17 +172830,12 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? MapICreateClientCommandMutation_CreateClient_Client_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) { - if (data is null) - { - return null; - } - - ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); } else { @@ -172678,17 +172845,12 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? MapICreateClientCommandMutation_CreateClient_Client_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) { - if (data is null) - { - return null; - } - - ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); } else { @@ -172698,43 +172860,40 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateMockSchema_CreateMockSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + var createMockSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData child in list) { - clientVersionEdges.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + createMockSchemaErrors.Add(MapNonNullableICreateMockSchema_CreateMockSchema_Errors(child)); } - return clientVersionEdges; + return createMockSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_Errors MapNonNullableICreateMockSchema_CreateMockSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData mockSchemaNonUniqueNameError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(mockSchemaNonUniqueNameError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Message ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Name ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_ValidationError(); } else { @@ -172744,28 +172903,57 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateMockSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CreateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData createMockSchema) + { + CreateMockSchema = createMockSchema; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData CreateMockSchema { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CreateMockSchemaResultInfo(CreateMockSchema); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UpdateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public UpdateMockSchemaResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaResult); + + public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is UpdateMockSchemaResultInfo info) { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + return new UpdateMockSchemaResult(MapNonNullableIUpdateMockSchema_UpdateMockSchema(info.UpdateMockSchema)); } - return publishedClientVersions; + throw new global::System.ArgumentException("UpdateMockSchemaResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema MapNonNullableIUpdateMockSchema_UpdateMockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + IUpdateMockSchema_UpdateMockSchema returnValue = default !; + if (data.__typename.Equals("UpdateMockSchemaPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + returnValue = new UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(MapIUpdateMockSchema_UpdateMockSchema_MockSchema(data.MockSchema), MapIUpdateMockSchema_UpdateMockSchema_ErrorsNonNullableArray(data.Errors)); } else { @@ -172775,17 +172963,17 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MapIUpdateMockSchema_UpdateMockSchema_MockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? data) { if (data is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + IUpdateMockSchema_UpdateMockSchema_MockSchema returnValue = default !; + if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); } else { @@ -172795,12 +172983,12 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); } else { @@ -172810,32 +172998,55 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIDeleteClientByIdCommandMutation_DeleteClientById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + { + ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIUpdateMockSchema_UpdateMockSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var deleteClientByIdErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData child in list) + var updateMockSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData child in list) { - deleteClientByIdErrors.Add(MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById_Errors(child)); + updateMockSchemaErrors.Add(MapNonNullableIUpdateMockSchema_UpdateMockSchema_Errors(child)); } - return deleteClientByIdErrors; + return updateMockSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Errors MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_Errors MapNonNullableIUpdateMockSchema_UpdateMockSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData data) { - IDeleteClientByIdCommandMutation_DeleteClientById_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) + IUpdateMockSchema_UpdateMockSchema_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData mockSchemaNonUniqueNameError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(mockSchemaNonUniqueNameError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Message ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Name ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNotFoundErrorData mockSchemaNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(mockSchemaNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_ValidationError(); } else { @@ -172853,300 +173064,54 @@ public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOpe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class UpdateMockSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public DeleteClientByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData deleteClientById) + public UpdateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData updateMockSchema) { - DeleteClientById = deleteClientById; + UpdateMockSchema = updateMockSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData DeleteClientById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData UpdateMockSchema { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new DeleteClientByIdCommandMutationResultInfo(DeleteClientById); + return new UpdateMockSchemaResultInfo(UpdateMockSchema); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListMockCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListClientCommandQueryResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryResult); - - public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ListClientCommandQueryResultInfo info) - { - return new ListClientCommandQueryResult(MapIListClientCommandQuery_Node(info.Node)); - } - - throw new global::System.ArgumentException("ListClientCommandQueryResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? MapIListClientCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) - { - if (data is null) - { - return null; - } - - IListClientCommandQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Api(MapIListClientCommandQuery_Node_Clients(api.Clients)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ApiKey(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Client(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_CoordinateClientUsageMetrics(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Environment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_FusionConfigurationChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_FusionConfigurationDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLDirectiveDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLEnumTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLEnumValueDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLScalarTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLUnionTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Group(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Organization(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OrganizationMember(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_SchemaChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_SchemaDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Stage(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_User(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Workspace(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_WorkspaceDocument(); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? MapIListClientCommandQuery_Node_Clients(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? data) - { - if (data is null) - { - return null; - } - - IListClientCommandQuery_Node_Clients returnValue = default !; - if (data.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal)) - { - returnValue = new ListClientCommandQuery_Node_Clients_ClientsConnection(MapIListClientCommandQuery_Node_Clients_EdgesNonNullableArray(data.Edges), MapNonNullableIListClientCommandQuery_Node_Clients_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapIListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + public ListMockCommandQueryResultFactory() { - if (list is null) - { - return null; - } - - var clientsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData child in list) - { - clientsEdges.Add(MapNonNullableIListClientCommandQuery_Node_Clients_Edges(child)); - } - - return clientsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges MapNonNullableIListClientCommandQuery_Node_Clients_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData data) - { - IListClientCommandQuery_Node_Clients_Edges returnValue = default !; - if (data.__typename.Equals("ClientsEdge", global::System.StringComparison.Ordinal)) - { - returnValue = new ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListClientCommandQuery_Node_Clients_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryResult); - private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node MapNonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - IListClientCommandQuery_Node_Clients_Edges_Node returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) - { - returnValue = new ListClientCommandQuery_Node_Clients_Edges_Node_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateClientCommandMutation_CreateClient_Client_Api(data.Api), MapICreateClientCommandMutation_CreateClient_Client_Versions(data.Versions)); - } - else + if (dataInfo is ListMockCommandQueryResultInfo info) { - throw new global::System.NotSupportedException(); + return new ListMockCommandQueryResult(MapIListMockCommandQuery_ApiById(info.ApiById)); } - return returnValue; + throw new global::System.ArgumentException("ListMockCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? MapICreateClientCommandMutation_CreateClient_Client_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? MapIListMockCommandQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { if (data is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; + IListMockCommandQuery_ApiById returnValue = default !; if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); + returnValue = new ListMockCommandQuery_ApiById_Api(MapIListMockCommandQuery_ApiById_MockSchemas(data.MockSchemas)); } else { @@ -173156,17 +173121,17 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? MapICreateClientCommandMutation_CreateClient_Client_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MapIListMockCommandQuery_ApiById_MockSchemas(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? data) { if (data is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + IListMockCommandQuery_ApiById_MockSchemas returnValue = default !; + if (data.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(MapIListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(data.Edges), MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -173176,43 +173141,28 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) - { - clientVersionEdges.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); - } - - return clientVersionEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); - } - else + var mockSchemasEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData child in list) { - throw new global::System.NotSupportedException(); + mockSchemasEdges.Add(MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(child)); } - return returnValue; + return mockSchemasEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + IListMockCommandQuery_ApiById_MockSchemas_Edges returnValue = default !; + if (data.__typename.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + returnValue = new ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -173222,28 +173172,12 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) - { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); - } - - return publishedClientVersions; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + IListMockCommandQuery_ApiById_MockSchemas_Edges_Node returnValue = default !; + if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + returnValue = new ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); } else { @@ -173253,17 +173187,12 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) { - if (data is null) - { - return null; - } - - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); } else { @@ -173273,12 +173202,12 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); } else { @@ -173288,12 +173217,12 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo MapNonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IListClientCommandQuery_Node_Clients_PageInfo returnValue = default !; + IListMockCommandQuery_ApiById_MockSchemas_PageInfo returnValue = default !; if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -173311,338 +173240,214 @@ public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationRes // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListMockCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + public ListMockCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) { - Node = node; + ApiById = apiById; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListClientCommandQueryResultInfo(Node); + return new ListMockCommandQueryResultInfo(ApiById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ShowClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public PublishClientVersionResultFactory() + public ShowClientCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryResult); - public PublishClientVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is PublishClientVersionResultInfo info) + if (dataInfo is ShowClientCommandQueryResultInfo info) { - return new PublishClientVersionResult(MapNonNullableIPublishClientVersion_PublishClient(info.PublishClient)); + return new ShowClientCommandQueryResult(MapIShowClientCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("PublishClientVersionResultInfo expected."); + throw new global::System.ArgumentException("ShowClientCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient MapNonNullableIPublishClientVersion_PublishClient(global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? MapIShowClientCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IPublishClientVersion_PublishClient returnValue = default !; - if (data.__typename.Equals("PublishClientPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new PublishClientVersion_PublishClient_PublishClientPayload(data.Id, MapIPublishClientVersion_PublishClient_ErrorsNonNullableArray(data.Errors)); + return null; } - else + + IShowClientCommandQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Api(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapIPublishClientVersion_PublishClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ApiDocument(); } - - var publishClientErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientErrorData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - publishClientErrors.Add(MapNonNullableIPublishClientVersion_PublishClient_Errors(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ApiKey(); } - - return publishClientErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient_Errors MapNonNullableIPublishClientVersion_PublishClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientErrorData data) - { - IPublishClientVersion_PublishClient_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Client(client.Id ?? throw new global::System.ArgumentNullException(), client.Name ?? throw new global::System.ArgumentNullException(), MapIShowClientCommandQuery_Node_Api_1(client.Api), MapIShowClientCommandQuery_Node_Versions(client.Versions)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData clientVersionNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(clientVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientVersion(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_CoordinateClientUsageMetrics(); } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishClientVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public PublishClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData publishClient) - { - PublishClient = publishClient; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData PublishClient { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new PublishClientVersionResultInfo(PublishClient); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public OnClientVersionPublishUpdatedResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedResult); - - public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is OnClientVersionPublishUpdatedResultInfo info) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - return new OnClientVersionPublishUpdatedResult(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate(info.OnClientVersionPublishingUpdate)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Environment(); } - - throw new global::System.ArgumentException("OnClientVersionPublishUpdatedResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionPublishFailedData clientVersionPublishFailed) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - if (!clientVersionPublishFailed.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed(clientVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), clientVersionPublishFailed.State!.Value, MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ErrorsNonNullableArray(clientVersionPublishFailed.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_FusionConfigurationChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionPublishSuccessData clientVersionPublishSuccess) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - if (!clientVersionPublishSuccess.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess(clientVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), clientVersionPublishSuccess.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_FusionConfigurationDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) { - if (!operationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) { - if (!processingTaskApproved.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLDirectiveDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) { - if (!processingTaskIsQueued.QueuePosition.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLEnumValueDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) { - if (!waitForApproval.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); } - - var clientVersionPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishErrorData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) { - clientVersionPublishErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition(); } - - return clientVersionPublishErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollection(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionVersion(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollection(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionChangeLog(); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) - { - if (data is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionDeployment(); } - - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionVersion(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Organization(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OrganizationMember(); } - - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_SchemaChangeLog(); } - - return persistedQueryValidationFaileds; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; - if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_SchemaDeployment(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Stage(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_User(); } - - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Workspace(); } - - return persistedQueryErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; - if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_WorkspaceDocument(); } else { @@ -173652,28 +173457,17 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? MapIShowClientCommandQuery_Node_Api_1(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - if (list is null) + if (data is null) { return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) - { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); - } - - return persistedQueryErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; - if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Api_1 returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); } else { @@ -173683,33 +173477,17 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? MapIShowClientCommandQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + IShowClientCommandQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); + returnValue = new ShowClientCommandQuery_Node_Versions_ClientVersionConnection(MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -173719,28 +173497,28 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) { - clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + clientVersionEdges.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } - return clientDeploymentErrors; + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + IShowClientCommandQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -173750,44 +173528,12 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) - { - fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); - } - - return fusionConfigurationDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); } else { @@ -173797,114 +173543,48 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) { - schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - return schemaChangeLogEntrys; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) - { - if (!directiveModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) - { - if (!enumModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) - { - if (!inputObjectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) { - if (!interfaceModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) + else { - if (!objectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) - { - if (!scalarModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) - { - if (!typeSystemMemberAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return returnValue; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + { + if (data is null) { - if (!typeSystemMemberModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) - { - if (!typeSystemMemberRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - if (!unionModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -173914,88 +173594,75 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - if (list is null) + IShowClientCommandQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - throw new global::System.ArgumentNullException(); + returnValue = new ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); } - - var directiveChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData child in list) + else { - directiveChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(child)); + throw new global::System.NotSupportedException(); } - return directiveChanges; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData data) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) - { - if (!argumentAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(argumentAdded.__typename ?? throw new global::System.ArgumentNullException(), argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) - { - if (!argumentChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowClientCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ShowClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + { + Node = node; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) - { - if (!argumentRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(argumentRemoved.__typename ?? throw new global::System.ArgumentNullException(), argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ShowClientCommandQueryResultInfo(Node); + } + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData directiveLocationAdded) - { - if (!directiveLocationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UnpublishClientResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public UnpublishClientResultFactory() + { + } - if (!directiveLocationAdded.Location.HasValue) - { - throw new global::System.ArgumentNullException(); - } + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientResult); - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(directiveLocationAdded.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationAdded.Severity!.Value, directiveLocationAdded.Location!.Value); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData directiveLocationRemoved) + public UnpublishClientResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is UnpublishClientResultInfo info) { - if (!directiveLocationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return new UnpublishClientResult(MapNonNullableIUnpublishClient_UnpublishClient(info.UnpublishClient)); + } - if (!directiveLocationRemoved.Location.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.ArgumentException("UnpublishClientResultInfo expected."); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(directiveLocationRemoved.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationRemoved.Severity!.Value, directiveLocationRemoved.Location!.Value); + private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient MapNonNullableIUnpublishClient_UnpublishClient(global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData data) + { + IUnpublishClient_UnpublishClient returnValue = default !; + if (data.__typename.Equals("UnpublishClientPayload", global::System.StringComparison.Ordinal)) + { + returnValue = new UnpublishClient_UnpublishClient_UnpublishClientPayload(MapIUnpublishClient_UnpublishClient_ClientVersion(data.ClientVersion), MapIUnpublishClient_UnpublishClient_ErrorsNonNullableArray(data.Errors)); } else { @@ -174005,51 +173672,37 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? MapIUnpublishClient_UnpublishClient_ClientVersion(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var argumentChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData child in list) + IUnpublishClient_UnpublishClient_ClientVersion returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { - argumentChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(child)); + returnValue = new UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), MapIUnpublishClient_UnpublishClient_ClientVersion_Client(data.Client)); + } + else + { + throw new global::System.NotSupportedException(); } - return argumentChanges; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? MapIUnpublishClient_UnpublishClient_ClientVersion_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + if (data is null) { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(deprecatedChange.__typename ?? throw new global::System.ArgumentNullException(), deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + IUnpublishClient_UnpublishClient_ClientVersion_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(typeChanged.__typename ?? throw new global::System.ArgumentNullException(), typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException()); + returnValue = new UnpublishClient_UnpublishClient_ClientVersion_Client_Client(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -174059,60 +173712,44 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIUnpublishClient_UnpublishClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var enumChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData child in list) + var unpublishClientErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData child in list) { - enumChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(child)); + unpublishClientErrors.Add(MapNonNullableIUnpublishClient_UnpublishClient_Errors(child)); } - return enumChanges; + return unpublishClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_Errors MapNonNullableIUnpublishClient_UnpublishClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IUnpublishClient_UnpublishClient_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData enumValueAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) { - if (!enumValueAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(enumValueAdded.__typename ?? throw new global::System.ArgumentNullException(), enumValueAdded.Severity!.Value, enumValueAdded.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData enumValueChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - if (!enumValueChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(enumValueChanged.__typename ?? throw new global::System.ArgumentNullException(), enumValueChanged.Severity!.Value, enumValueChanged.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(enumValueChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData enumValueRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData clientVersionNotFoundError) { - if (!enumValueRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(enumValueRemoved.__typename ?? throw new global::System.ArgumentNullException(), enumValueRemoved.Severity!.Value, enumValueRemoved.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(clientVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -174122,105 +173759,57 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var enumValueChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData child in list) - { - enumValueChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(child)); - } - - return enumValueChanges; + return Create(dataInfo, snapshot); } + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UnpublishClientResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public UnpublishClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData unpublishClient) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) - { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + UnpublishClient = unpublishClient; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + public global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData UnpublishClient { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; - return returnValue; + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new UnpublishClientResultInfo(UnpublishClient); } + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadClientResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public UploadClientResultFactory() { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData child in list) - { - inputObjectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(child)); - } - - return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData data) + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadClientResult); + + public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + if (dataInfo is UploadClientResultInfo info) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + return new UploadClientResult(MapNonNullableIUploadClient_UploadClient(info.UploadClient)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) - { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) - { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.ArgumentException("UploadClientResultInfo expected."); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData inputFieldChanged) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient MapNonNullableIUploadClient_UploadClient(global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData data) + { + IUploadClient_UploadClient returnValue = default !; + if (data.__typename.Equals("UploadClientPayload", global::System.StringComparison.Ordinal)) { - if (!inputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(inputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), inputFieldChanged.Severity!.Value, inputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), inputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(inputFieldChanged.Changes)); + returnValue = new UploadClient_UploadClient_UploadClientPayload(MapIUploadClient_UploadClient_ClientVersion(data.ClientVersion), MapIUploadClient_UploadClient_ErrorsNonNullableArray(data.Errors)); } else { @@ -174230,51 +173819,17 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var inputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData child in list) - { - inputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(child)); - } - - return inputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? MapIUploadClient_UploadClient_ClientVersion(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + if (data is null) { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + IUploadClient_UploadClient_ClientVersion returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new UploadClient_UploadClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -174284,96 +173839,48 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIUploadClient_UploadClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData child in list) + var uploadClientErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData child in list) { - interfaceChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(child)); + uploadClientErrors.Add(MapNonNullableIUploadClient_UploadClient_Errors(child)); } - return interfaceChanges; + return uploadClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_Errors MapNonNullableIUploadClient_UploadClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) - { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) + IUploadClient_UploadClient_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - if (!interfaceImplementationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidPersistedQueryErrorData invalidPersistedQueryError) { - if (!interfaceImplementationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_InvalidPersistedQueryError(invalidPersistedQueryError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - if (!outputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData possibleTypeAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) { - if (!possibleTypeAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(possibleTypeAdded.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeAdded.Severity!.Value, possibleTypeAdded.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData possibleTypeRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - if (!possibleTypeRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(possibleTypeRemoved.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeRemoved.Severity!.Value, possibleTypeRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -174383,78 +173890,57 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData child in list) - { - outputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(child)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadClientResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public UploadClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData uploadClient) + { + UploadClient = uploadClient; + } - return outputFieldChanges; + public global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData UploadClient { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new UploadClientResultInfo(UploadClient); } + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ValidateClientVersionResultFactory() { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) - { - if (!argumentAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException(), argumentAdded.__typename ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) - { - if (!argumentChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionResult); - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) + public ValidateClientVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ValidateClientVersionResultInfo info) { - if (!argumentRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException(), argumentRemoved.__typename ?? throw new global::System.ArgumentNullException()); + return new ValidateClientVersionResult(MapNonNullableIValidateClientVersion_ValidateClient(info.ValidateClient)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) - { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.ArgumentException("ValidateClientVersionResultInfo expected."); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient MapNonNullableIValidateClientVersion_ValidateClient(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData data) + { + IValidateClientVersion_ValidateClient returnValue = default !; + if (data.__typename.Equals("ValidateClientPayload", global::System.StringComparison.Ordinal)) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new ValidateClientVersion_ValidateClient_ValidateClientPayload(data.Id, MapIValidateClientVersion_ValidateClient_ErrorsNonNullableArray(data.Errors)); } else { @@ -174464,78 +173950,40 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIValidateClientVersion_ValidateClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData child in list) + var validateClientErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData child in list) { - objectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(child)); + validateClientErrors.Add(MapNonNullableIValidateClientVersion_ValidateClient_Errors(child)); } - return objectChanges; + return validateClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient_Errors MapNonNullableIValidateClientVersion_ValidateClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) - { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) + IValidateClientVersion_ValidateClient_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) { - if (!interfaceImplementationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - if (!interfaceImplementationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - if (!outputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -174545,87 +173993,89 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) - { - scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); - } - - return scalarChanges; + return Create(dataInfo, snapshot); } + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateClientVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ValidateClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData validateClient) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + ValidateClient = validateClient; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else - { - throw new global::System.NotSupportedException(); - } + public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData ValidateClient { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; - return returnValue; + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ValidateClientVersionResultInfo(ValidateClient); } + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnClientVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public OnClientVersionValidationUpdatedResultFactory() { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedResult); + + public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is OnClientVersionValidationUpdatedResultInfo info) { - unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); + return new OnClientVersionValidationUpdatedResult(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate(info.OnClientVersionValidationUpdate)); } - return unionChanges; + throw new global::System.ArgumentException("OnClientVersionValidationUpdatedResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationFailedData clientVersionValidationFailed) { - if (!descriptionChanged.Severity.HasValue) + if (!clientVersionValidationFailed.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed(clientVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), clientVersionValidationFailed.State!.Value, MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ErrorsNonNullableArray(clientVersionValidationFailed.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationSuccessData clientVersionValidationSuccess) { - if (!unionMemberAdded.Severity.HasValue) + if (!clientVersionValidationSuccess.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess(clientVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), clientVersionValidationSuccess.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { - if (!unionMemberRemoved.Severity.HasValue) + if (!operationInProgress.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + { + if (!validationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); } else { @@ -174635,59 +174085,40 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var graphQLSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) + var clientVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData child in list) { - graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + clientVersionValidationErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors(child)); } - return graphQLSchemaErrors; + return clientVersionValidationErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; - if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) - { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); - } - else + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); } - - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError(); } - - return openApiCollectionValidationCollections; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -174697,17 +174128,17 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -174717,32 +174148,28 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - return openApiCollectionValidationEntitys; + return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; + if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } else { @@ -174752,32 +174179,28 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } - return openApiCollectionValidationEntityErrors; + return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; + if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } else { @@ -174787,28 +174210,28 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - return openApiCollectionValidationDocumentErrorLocations; + return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; + if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -174818,28 +174241,57 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class OnClientVersionValidationUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public OnClientVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData onClientVersionValidationUpdate) + { + OnClientVersionValidationUpdate = onClientVersionValidationUpdate; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData OnClientVersionValidationUpdate { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new OnClientVersionValidationUpdatedResultInfo(OnClientVersionValidationUpdate); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteClientByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public DeleteClientByIdCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutationResult); + + public DeleteClientByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is DeleteClientByIdCommandMutationResultInfo info) { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + return new DeleteClientByIdCommandMutationResult(MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById(info.DeleteClientById)); } - return mcpFeatureCollectionValidationCollections; + throw new global::System.ArgumentException("DeleteClientByIdCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) + IDeleteClientByIdCommandMutation_DeleteClientById returnValue = default !; + if (data.__typename.Equals("DeleteClientByIdPayload", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new DeleteClientByIdCommandMutation_DeleteClientById_DeleteClientByIdPayload(MapIDeleteClientByIdCommandMutation_DeleteClientById_Client(data.Client), MapIDeleteClientByIdCommandMutation_DeleteClientById_ErrorsNonNullableArray(data.Errors)); } else { @@ -174849,17 +174301,17 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Client? MapIDeleteClientByIdCommandMutation_DeleteClientById_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + IDeleteClientByIdCommandMutation_DeleteClientById_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new DeleteClientByIdCommandMutation_DeleteClientById_Client_Client(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapIShowClientCommandQuery_Node_Api_1(data.Api), MapIShowClientCommandQuery_Node_Versions(data.Versions)); } else { @@ -174869,32 +174321,37 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? MapIShowClientCommandQuery_Node_Api_1(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) + IShowClientCommandQuery_Node_Api_1 returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); + } + else { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionValidationEntitys; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? MapIShowClientCommandQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + + IShowClientCommandQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_ClientVersionConnection(MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -174904,32 +174361,43 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); + clientVersionEdges.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) + IShowClientCommandQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + { + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); } else { @@ -174939,28 +174407,28 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); } else { @@ -174970,28 +174438,32 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionDeploymentErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + IShowClientCommandQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); } else { @@ -175001,28 +174473,32 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIDeleteClientByIdCommandMutation_DeleteClientById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) + var deleteClientByIdErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData child in list) { - openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + deleteClientByIdErrors.Add(MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById_Errors(child)); } - return openApiCollectionDeploymentErrors; + return deleteClientByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteClientByIdCommandMutation_DeleteClientById_Errors MapNonNullableIDeleteClientByIdCommandMutation_DeleteClientById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + IDeleteClientByIdCommandMutation_DeleteClientById_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdCommandMutation_DeleteClientById_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteClientByIdCommandMutation_DeleteClientById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -175032,67 +174508,104 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteClientByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public DeleteClientByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData deleteClientById) + { + DeleteClientById = deleteClientById; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData DeleteClientById { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new DeleteClientByIdCommandMutationResultInfo(DeleteClientById); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public PublishClientVersionResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersionResult); + + public PublishClientVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is PublishClientVersionResultInfo info) { - schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); + return new PublishClientVersionResult(MapNonNullableIPublishClientVersion_PublishClient(info.PublishClient)); } - return schemaDeploymentErrors; + throw new global::System.ArgumentException("PublishClientVersionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient MapNonNullableIPublishClientVersion_PublishClient(global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + IPublishClientVersion_PublishClient returnValue = default !; + if (data.__typename.Equals("PublishClientPayload", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new PublishClientVersion_PublishClient_PublishClientPayload(data.Id, MapIPublishClientVersion_PublishClient_ErrorsNonNullableArray(data.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIPublishClientVersion_PublishClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) - { - if (!schemaVersionSyntaxError.Column.HasValue) - { - throw new global::System.ArgumentNullException(); - } - if (!schemaVersionSyntaxError.Position.HasValue) - { - throw new global::System.ArgumentNullException(); - } + var publishClientErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientErrorData child in list) + { + publishClientErrors.Add(MapNonNullableIPublishClientVersion_PublishClient_Errors(child)); + } - if (!schemaVersionSyntaxError.Line.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return publishClientErrors; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + private global::ChilliCream.Nitro.CommandLine.Client.IPublishClientVersion_PublishClient_Errors MapNonNullableIPublishClientVersion_PublishClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishClientErrorData data) + { + IPublishClientVersion_PublishClient_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData clientVersionNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_ClientVersionNotFoundError(clientVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishClientVersion_PublishClient_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -175110,214 +174623,330 @@ public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PublishClientVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public OnClientVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData onClientVersionPublishingUpdate) + public PublishClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData publishClient) { - OnClientVersionPublishingUpdate = onClientVersionPublishingUpdate; + PublishClient = publishClient; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData OnClientVersionPublishingUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientPayloadData PublishClient { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new OnClientVersionPublishUpdatedResultInfo(OnClientVersionPublishingUpdate); + return new PublishClientVersionResultInfo(PublishClient); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class OnClientVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ShowClientCommandQueryResultFactory() + public OnClientVersionPublishUpdatedResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdatedResult); - public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public OnClientVersionPublishUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ShowClientCommandQueryResultInfo info) + if (dataInfo is OnClientVersionPublishUpdatedResultInfo info) { - return new ShowClientCommandQueryResult(MapIShowClientCommandQuery_Node(info.Node)); + return new OnClientVersionPublishUpdatedResult(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate(info.OnClientVersionPublishingUpdate)); } - throw new global::System.ArgumentException("ShowClientCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("OnClientVersionPublishUpdatedResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node? MapIShowClientCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionPublishFailedData clientVersionPublishFailed) { - return null; - } + if (!clientVersionPublishFailed.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IShowClientCommandQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Api(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishFailed(clientVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), clientVersionPublishFailed.State!.Value, MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ErrorsNonNullableArray(clientVersionPublishFailed.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionPublishSuccessData clientVersionPublishSuccess) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ApiDocument(); + if (!clientVersionPublishSuccess.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ClientVersionPublishSuccess(clientVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), clientVersionPublishSuccess.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ApiKey(); + if (!operationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Client(client.Id ?? throw new global::System.ArgumentNullException(), client.Name ?? throw new global::System.ArgumentNullException(), MapICreateClientCommandMutation_CreateClient_Client_Api(client.Api), MapICreateClientCommandMutation_CreateClient_Client_Versions(client.Versions)); + if (!processingTaskApproved.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientChangeLog(); + if (!processingTaskIsQueued.QueuePosition.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_ClientVersion(); + if (!waitForApproval.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_CoordinateClientUsageMetrics(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Environment(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) + + var clientVersionPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_FusionConfigurationChangeLog(); + clientVersionPublishErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + + return clientVersionPublishErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_FusionConfigurationDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLDirectiveDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLEnumTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_ReadyTimeoutError(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLEnumValueDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + { + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + + return persistedQueryValidationFaileds; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; + if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLObjectFieldDefinition(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLScalarTypeDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_GraphQLUnionTypeDefinition(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Group(); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + + return persistedQueryErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; + if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollection(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionChangeLog(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionDeployment(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_McpFeatureCollectionVersion(); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + + return persistedQueryErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; + if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollection(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionChangeLog(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) + { + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionDeployment(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OpenApiCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Organization(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_OrganizationMember(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_SchemaChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_SchemaDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Stage(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_User(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_Workspace(); + clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + + return clientDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowClientCommandQuery_Node_WorkspaceDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else { @@ -175327,37 +174956,44 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? MapICreateClientCommandMutation_CreateClient_Client_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); - } - else + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) { - throw new global::System.NotSupportedException(); + fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); } - return returnValue; + return fusionConfigurationDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? MapICreateClientCommandMutation_CreateClient_Client_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - - ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -175367,28 +175003,28 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - clientVersionEdges.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return clientVersionEdges; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -175398,12 +175034,17 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + if (data is null) + { + return null; + } + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -175413,28 +175054,32 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } - return publishedClientVersions; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -175444,32 +175089,32 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); - } - else + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - throw new global::System.NotSupportedException(); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } - return returnValue; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -175479,60 +175124,59 @@ public ShowClientCommandQueryResult Create(global::StrawberryShake.IOperationRes return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ShowClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - Node = node; - } + if (list is null) + { + return null; + } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) + { + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ShowClientCommandQueryResultInfo(Node); + return mcpFeatureCollectionValidationDocumentErrorLocations; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public UnpublishClientResultFactory() + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { - } + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClientResult); + return returnValue; + } - public UnpublishClientResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (dataInfo is UnpublishClientResultInfo info) + if (list is null) { - return new UnpublishClientResult(MapNonNullableIUnpublishClient_UnpublishClient(info.UnpublishClient)); + throw new global::System.ArgumentNullException(); } - throw new global::System.ArgumentException("UnpublishClientResultInfo expected."); + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + { + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } + + return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient MapNonNullableIUnpublishClient_UnpublishClient(global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) { - IUnpublishClient_UnpublishClient returnValue = default !; - if (data.__typename.Equals("UnpublishClientPayload", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new UnpublishClient_UnpublishClient_UnpublishClientPayload(MapIUnpublishClient_UnpublishClient_ClientVersion(data.ClientVersion), MapIUnpublishClient_UnpublishClient_ErrorsNonNullableArray(data.Errors)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -175542,17 +175186,17 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion? MapIUnpublishClient_UnpublishClient_ClientVersion(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) { if (data is null) { return null; } - IUnpublishClient_UnpublishClient_ClientVersion returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - returnValue = new UnpublishClient_UnpublishClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), MapIUnpublishClient_UnpublishClient_ClientVersion_Client(data.Client)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -175562,17 +175206,32 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_ClientVersion_Client? MapIUnpublishClient_UnpublishClient_ClientVersion_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IUnpublishClient_UnpublishClient_ClientVersion_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - returnValue = new UnpublishClient_UnpublishClient_ClientVersion_Client_Client(data.Name ?? throw new global::System.ArgumentNullException()); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + } + + return openApiCollectionValidationEntitys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -175582,44 +175241,63 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUnpublishClient_UnpublishClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var unpublishClientErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData child in list) + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - unpublishClientErrors.Add(MapNonNullableIUnpublishClient_UnpublishClient_Errors(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } - return unpublishClientErrors; + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IUnpublishClient_UnpublishClient_Errors MapNonNullableIUnpublishClient_UnpublishClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IUnpublishClient_UnpublishClient_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData clientVersionNotFoundError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ClientVersionNotFoundError(clientVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientVersionNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UnpublishClient_UnpublishClient_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + } + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -175629,57 +175307,114 @@ public UnpublishClientResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - return Create(dataInfo, snapshot); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) + { + schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); + } + + return schemaChangeLogEntrys; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public UnpublishClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData unpublishClient) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) { - UnpublishClient = unpublishClient; - } + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) + { + if (!directiveModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData UnpublishClient { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) + { + if (!enumModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new UnpublishClientResultInfo(UnpublishClient); - } - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) + { + if (!inputObjectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public UploadClientResultFactory() - { - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) + { + if (!interfaceModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadClientResult); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) + { + if (!objectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is UploadClientResultInfo info) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) { - return new UploadClientResult(MapNonNullableIUploadClient_UploadClient(info.UploadClient)); + if (!scalarModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) + { + if (!typeSystemMemberAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - throw new global::System.ArgumentException("UploadClientResultInfo expected."); - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) + { + if (!typeSystemMemberModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient MapNonNullableIUploadClient_UploadClient(global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData data) - { - IUploadClient_UploadClient returnValue = default !; - if (data.__typename.Equals("UploadClientPayload", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) { - returnValue = new UploadClient_UploadClient_UploadClientPayload(MapIUploadClient_UploadClient_ClientVersion(data.ClientVersion), MapIUploadClient_UploadClient_ErrorsNonNullableArray(data.Errors)); + if (!typeSystemMemberRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) + { + if (!unionModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); } else { @@ -175689,17 +175424,88 @@ public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_ClientVersion? MapIUploadClient_UploadClient_ClientVersion(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IUploadClient_UploadClient_ClientVersion returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + var directiveChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData child in list) { - returnValue = new UploadClient_UploadClient_ClientVersion_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException()); + directiveChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(child)); + } + + return directiveChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) + { + if (!argumentAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(argumentAdded.__typename ?? throw new global::System.ArgumentNullException(), argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) + { + if (!argumentChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) + { + if (!argumentRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(argumentRemoved.__typename ?? throw new global::System.ArgumentNullException(), argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData directiveLocationAdded) + { + if (!directiveLocationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!directiveLocationAdded.Location.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(directiveLocationAdded.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationAdded.Severity!.Value, directiveLocationAdded.Location!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData directiveLocationRemoved) + { + if (!directiveLocationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!directiveLocationRemoved.Location.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(directiveLocationRemoved.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationRemoved.Severity!.Value, directiveLocationRemoved.Location!.Value); } else { @@ -175709,44 +175515,51 @@ public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUploadClient_UploadClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var uploadClientErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData child in list) + var argumentChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData child in list) { - uploadClientErrors.Add(MapNonNullableIUploadClient_UploadClient_Errors(child)); + argumentChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(child)); } - return uploadClientErrors; + return argumentChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadClient_UploadClient_Errors MapNonNullableIUploadClient_UploadClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData data) { - IUploadClient_UploadClient_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidPersistedQueryErrorData invalidPersistedQueryError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_InvalidPersistedQueryError(invalidPersistedQueryError.Message ?? throw new global::System.ArgumentNullException()); + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(deprecatedChange.__typename ?? throw new global::System.ArgumentNullException(), deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadClient_UploadClient_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(typeChanged.__typename ?? throw new global::System.ArgumentNullException(), typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException()); } else { @@ -175756,57 +175569,60 @@ public UploadClientResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public UploadClientResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData uploadClient) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - UploadClient = uploadClient; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData UploadClient { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new UploadClientResultInfo(UploadClient); - } - } + var enumChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData child in list) + { + enumChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(child)); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ValidateClientVersionResultFactory() - { + return enumChanges; } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersionResult); - - public ValidateClientVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData data) { - if (dataInfo is ValidateClientVersionResultInfo info) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - return new ValidateClientVersionResult(MapNonNullableIValidateClientVersion_ValidateClient(info.ValidateClient)); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData enumValueAdded) + { + if (!enumValueAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - throw new global::System.ArgumentException("ValidateClientVersionResultInfo expected."); - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(enumValueAdded.__typename ?? throw new global::System.ArgumentNullException(), enumValueAdded.Severity!.Value, enumValueAdded.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData enumValueChanged) + { + if (!enumValueChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient MapNonNullableIValidateClientVersion_ValidateClient(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData data) - { - IValidateClientVersion_ValidateClient returnValue = default !; - if (data.__typename.Equals("ValidateClientPayload", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(enumValueChanged.__typename ?? throw new global::System.ArgumentNullException(), enumValueChanged.Severity!.Value, enumValueChanged.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(enumValueChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData enumValueRemoved) { - returnValue = new ValidateClientVersion_ValidateClient_ValidateClientPayload(data.Id, MapIValidateClientVersion_ValidateClient_ErrorsNonNullableArray(data.Errors)); + if (!enumValueRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(enumValueRemoved.__typename ?? throw new global::System.ArgumentNullException(), enumValueRemoved.Severity!.Value, enumValueRemoved.Coordinate ?? throw new global::System.ArgumentNullException()); } else { @@ -175816,36 +175632,42 @@ public ValidateClientVersionResult Create(global::StrawberryShake.IOperationResu return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIValidateClientVersion_ValidateClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var validateClientErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData child in list) + var enumValueChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData child in list) { - validateClientErrors.Add(MapNonNullableIValidateClientVersion_ValidateClient_Errors(child)); + enumValueChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(child)); } - return validateClientErrors; + return enumValueChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateClientVersion_ValidateClient_Errors MapNonNullableIValidateClientVersion_ValidateClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData data) { - IValidateClientVersion_ValidateClient_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData clientNotFoundError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_ClientNotFoundError(clientNotFoundError.Message ?? throw new global::System.ArgumentNullException(), clientNotFoundError.ClientId ?? throw new global::System.ArgumentNullException()); + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateClientVersion_ValidateClient_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -175855,89 +175677,60 @@ public ValidateClientVersionResult Create(global::StrawberryShake.IOperationResu return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ValidateClientVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData validateClient) - { - ValidateClient = validateClient; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData ValidateClient { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ValidateClientVersionResultInfo(ValidateClient); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public OnClientVersionValidationUpdatedResultFactory() + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdatedResult); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is OnClientVersionValidationUpdatedResultInfo info) + var inputObjectChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData child in list) { - return new OnClientVersionValidationUpdatedResult(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate(info.OnClientVersionValidationUpdate)); + inputObjectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(child)); } - throw new global::System.ArgumentException("OnClientVersionValidationUpdatedResultInfo expected."); + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData data) { - IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationFailedData clientVersionValidationFailed) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - if (!clientVersionValidationFailed.State.HasValue) + if (!descriptionChanged.Severity.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationFailed(clientVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), clientVersionValidationFailed.State!.Value, MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ErrorsNonNullableArray(clientVersionValidationFailed.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationSuccessData clientVersionValidationSuccess) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - if (!clientVersionValidationSuccess.State.HasValue) + if (!fieldAddedChange.Severity.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ClientVersionValidationSuccess(clientVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), clientVersionValidationSuccess.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) { - if (!operationInProgress.State.HasValue) + if (!fieldRemovedChange.Severity.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData inputFieldChanged) { - if (!validationInProgress.State.HasValue) + if (!inputFieldChanged.Severity.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(inputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), inputFieldChanged.Severity!.Value, inputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), inputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(inputFieldChanged.Changes)); } else { @@ -175947,60 +175740,51 @@ public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var clientVersionValidationErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData child in list) + var inputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData child in list) { - clientVersionValidationErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors(child)); + inputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(child)); } - return clientVersionValidationErrors; + return inputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData data) { - IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_ReadyTimeoutError(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) - { - if (data is null) - { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); } - - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -176010,59 +175794,96 @@ public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + var interfaceChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData child in list) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + interfaceChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(child)); } - return persistedQueryValidationFaileds; + return interfaceChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; - if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + if (!fieldAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) { - throw new global::System.ArgumentNullException(); + if (!fieldRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) + { + if (!interfaceImplementationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + if (!interfaceImplementationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) + { + if (!outputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - return persistedQueryErrors; - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData possibleTypeAdded) + { + if (!possibleTypeAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; - if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(possibleTypeAdded.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeAdded.Severity!.Value, possibleTypeAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData possibleTypeRemoved) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + if (!possibleTypeRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(possibleTypeRemoved.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeRemoved.Severity!.Value, possibleTypeRemoved.TypeName ?? throw new global::System.ArgumentNullException()); } else { @@ -176072,88 +175893,78 @@ public OnClientVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) + var outputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData child in list) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + outputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(child)); } - return persistedQueryErrorLocations; + return outputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; - if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + if (!argumentAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException(), argumentAdded.__typename ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public OnClientVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData onClientVersionValidationUpdate) - { - OnClientVersionValidationUpdate = onClientVersionValidationUpdate; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData OnClientVersionValidationUpdate { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new OnClientVersionValidationUpdatedResultInfo(OnClientVersionValidationUpdate); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public CreateEnvironmentCommandMutationResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationResult); + if (!argumentChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is CreateEnvironmentCommandMutationResultInfo info) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) { - return new CreateEnvironmentCommandMutationResult(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(info.PushWorkspaceChanges)); + if (!argumentRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException(), argumentRemoved.__typename ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + { + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - throw new global::System.ArgumentException("CreateEnvironmentCommandMutationResultInfo expected."); - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData data) - { - ICreateEnvironmentCommandMutation_PushWorkspaceChanges returnValue = default !; - if (data.__typename.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(data.Changes), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(data.Errors)); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -176163,68 +175974,78 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; - } - - var workspaceChangePayloads = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData child in list) - { - workspaceChangePayloads.Add(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(child)); + throw new global::System.ArgumentNullException(); } - return workspaceChangePayloads; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData data) - { - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes returnValue = default !; - if (data.__typename.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(data.ReferenceId ?? throw new global::System.ArgumentNullException(), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error(data.Error), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result(data.Result)); - } - else + var objectChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData child in list) { - throw new global::System.NotSupportedException(); + objectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(child)); } - return returnValue; + return objectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - return null; - } + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData changeValidationFailed) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(changeValidationFailed.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData hasBeenChangedConflict) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(hasBeenChangedConflict.Message ?? throw new global::System.ArgumentNullException()); + if (!fieldAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData hasBeenDeletedConflict) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(hasBeenDeletedConflict.Message ?? throw new global::System.ArgumentNullException()); + if (!fieldRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData identifierCollisionConflict) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(identifierCollisionConflict.Message ?? throw new global::System.ArgumentNullException()); + if (!interfaceImplementationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData unexpectedErrorOnChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(unexpectedErrorOnChange.Message ?? throw new global::System.ArgumentNullException()); + if (!interfaceImplementationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData workspaceNotFoundForChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(workspaceNotFoundForChange.Message ?? throw new global::System.ArgumentNullException()); + if (!outputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); } else { @@ -176234,49 +176055,33 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(environment.Name ?? throw new global::System.ArgumentNullException(), environment.Id ?? throw new global::System.ArgumentNullException(), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(environment.Workspace)); - } - else + var scalarChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) { - throw new global::System.NotSupportedException(); + scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return returnValue; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - return null; - } + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } else { @@ -176286,32 +176091,51 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData child in list) + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) { - pushWorkspaceChangesErrors.Add(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors(child)); + unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); } - return pushWorkspaceChangesErrors; + return unionChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) { - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData changeStructureInvalid) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(changeStructureInvalid.Message ?? throw new global::System.ArgumentNullException()); + if (!unionMemberAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) + { + if (!unionMemberRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); } else { @@ -176321,62 +176145,28 @@ public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOp return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public CreateEnvironmentCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData pushWorkspaceChanges) - { - PushWorkspaceChanges = pushWorkspaceChanges; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData PushWorkspaceChanges { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new CreateEnvironmentCommandMutationResultInfo(PushWorkspaceChanges); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ListEnvironmentCommandQueryResultFactory() + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryResult); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ListEnvironmentCommandQueryResultInfo info) + var graphQLSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) { - return new ListEnvironmentCommandQueryResult(MapIListEnvironmentCommandQuery_WorkspaceById(info.WorkspaceById)); + graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); } - throw new global::System.ArgumentException("ListEnvironmentCommandQueryResultInfo expected."); + return graphQLSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? MapIListEnvironmentCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) { - if (data is null) - { - return null; - } - - IListEnvironmentCommandQuery_WorkspaceById returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; + if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) { - returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Workspace(MapIListEnvironmentCommandQuery_WorkspaceById_Environments(data.Environments)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); } else { @@ -176386,17 +176176,28 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? MapIListEnvironmentCommandQuery_WorkspaceById_Environments(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IListEnvironmentCommandQuery_WorkspaceById_Environments returnValue = default !; - if (data.__typename.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal)) + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) { - returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection(MapIListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(data.Edges), MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + } + + return mcpFeatureCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else { @@ -176406,28 +176207,28 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var environmentsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData child in list) + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) { - environmentsEdges.Add(MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(child)); + openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); } - return environmentsEdges; + return openApiCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) { - IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges returnValue = default !; - if (data.__typename.Equals("EnvironmentsEdge", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else { @@ -176437,47 +176238,67 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node returnValue = default !; - if (data.__typename.Equals("Environment", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(data.Workspace)); + throw new global::System.ArgumentNullException(); } - else + + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) { - throw new global::System.NotSupportedException(); + schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); } - return returnValue; + return schemaDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + { + if (!schemaVersionSyntaxError.Column.HasValue) + { + throw new global::System.ArgumentNullException(); + } - return returnValue; - } + if (!schemaVersionSyntaxError.Position.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + if (!schemaVersionSyntaxError.Line.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) { - returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -176495,214 +176316,300 @@ public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class OnClientVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) + public OnClientVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData onClientVersionPublishingUpdate) { - WorkspaceById = workspaceById; + OnClientVersionPublishingUpdate = onClientVersionPublishingUpdate; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionPublishResultData OnClientVersionPublishingUpdate { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListEnvironmentCommandQueryResultInfo(WorkspaceById); + return new OnClientVersionPublishUpdatedResultInfo(OnClientVersionPublishingUpdate); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListClientCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ShowEnvironmentCommandQueryResultFactory() + public ListClientCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQueryResult); - public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListClientCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ShowEnvironmentCommandQueryResultInfo info) + if (dataInfo is ListClientCommandQueryResultInfo info) { - return new ShowEnvironmentCommandQueryResult(MapIShowEnvironmentCommandQuery_Node(info.Node)); + return new ListClientCommandQueryResult(MapIListClientCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("ShowEnvironmentCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("ListClientCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? MapIShowEnvironmentCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node? MapIListClientCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { if (data is null) { return null; } - IShowEnvironmentCommandQuery_Node? returnValue; + IListClientCommandQuery_Node? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Api(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Api(MapIListClientCommandQuery_Node_Clients(api.Clients)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ApiDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ApiDocument(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ApiKey(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ApiKey(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Client(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Client(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_ClientVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_CoordinateClientUsageMetrics(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Environment(environment.Id ?? throw new global::System.ArgumentNullException(), environment.Name ?? throw new global::System.ArgumentNullException(), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(environment.Workspace)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Environment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_FusionConfigurationChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_FusionConfigurationDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLDirectiveDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLEnumTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLEnumValueDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInputObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInputObjectTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLInterfaceTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLScalarTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_GraphQLUnionTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Group(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Group(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_McpFeatureCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OpenApiCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Organization(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Organization(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OrganizationMember(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_OrganizationMember(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_SchemaChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_SchemaChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_SchemaDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_SchemaDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Stage(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Stage(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_User(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_User(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Workspace(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_Workspace(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_WorkspaceDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListClientCommandQuery_Node_WorkspaceDocument(); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients? MapIListClientCommandQuery_Node_Clients(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? data) + { + if (data is null) + { + return null; + } + + IListClientCommandQuery_Node_Clients returnValue = default !; + if (data.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new ListClientCommandQuery_Node_Clients_ClientsConnection(MapIListClientCommandQuery_Node_Clients_EdgesNonNullableArray(data.Edges), MapNonNullableIListClientCommandQuery_Node_Clients_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var clientsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData child in list) + { + clientsEdges.Add(MapNonNullableIListClientCommandQuery_Node_Clients_Edges(child)); + } + + return clientsEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges MapNonNullableIListClientCommandQuery_Node_Clients_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData data) + { + IListClientCommandQuery_Node_Clients_Edges returnValue = default !; + if (data.__typename.Equals("ClientsEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ListClientCommandQuery_Node_Clients_Edges_ClientsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListClientCommandQuery_Node_Clients_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_Edges_Node MapNonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + { + IListClientCommandQuery_Node_Clients_Edges_Node returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + { + returnValue = new ListClientCommandQuery_Node_Clients_Edges_Node_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIShowClientCommandQuery_Node_Api_1(data.Api), MapIShowClientCommandQuery_Node_Versions(data.Versions)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? MapIShowClientCommandQuery_Node_Api_1(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + { + if (data is null) + { + return null; + } + + IShowClientCommandQuery_Node_Api_1 returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); } else { @@ -176712,17 +176619,17 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? MapIShowClientCommandQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) { if (data is null) { return null; } - ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_ClientVersionConnection(MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -176732,65 +176639,124 @@ public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + private global::System.Collections.Generic.IReadOnlyList? MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - return Create(dataInfo, snapshot); + if (list is null) + { + return null; + } + + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + { + clientVersionEdges.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); + } + + return clientVersionEdges; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ShowEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) { - Node = node; - } + IShowClientCommandQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + return returnValue; + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) { - return new ShowEnvironmentCommandQueryResultInfo(Node); + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public FetchConfigurationResultFactory() + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - } + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IFetchConfigurationResult); + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + { + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); + } - public FetchConfigurationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + return publishedClientVersions; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) { - if (dataInfo is FetchConfigurationResultInfo info) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) { - return new FetchConfigurationResult(MapIFetchConfiguration_FusionConfigurationByApiId(info.FusionConfigurationByApiId)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + } + else + { + throw new global::System.NotSupportedException(); } - throw new global::System.ArgumentException("FetchConfigurationResultInfo expected."); + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IFetchConfiguration_FusionConfigurationByApiId? MapIFetchConfiguration_FusionConfigurationByApiId(global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) { if (data is null) { return null; } - IFetchConfiguration_FusionConfigurationByApiId returnValue = default !; - if (data.__typename.Equals("FusionConfiguration", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - returnValue = new FetchConfiguration_FusionConfigurationByApiId_FusionConfiguration(data.DownloadUrl ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IShowClientCommandQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListClientCommandQuery_Node_Clients_PageInfo MapNonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IListClientCommandQuery_Node_Clients_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ListClientCommandQuery_Node_Clients_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -176808,49 +176774,52 @@ public FetchConfigurationResult Create(global::StrawberryShake.IOperationResultD // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListClientCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public FetchConfigurationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? fusionConfigurationByApiId) + public ListClientCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { - FusionConfigurationByApiId = fusionConfigurationByApiId; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? FusionConfigurationByApiId { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new FetchConfigurationResultInfo(FusionConfigurationByApiId); + return new ListClientCommandQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreateClientCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public UploadFusionSubgraphResultFactory() + public CreateClientCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraphResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutationResult); - public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CreateClientCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is UploadFusionSubgraphResultInfo info) + if (dataInfo is CreateClientCommandMutationResultInfo info) { - return new UploadFusionSubgraphResult(MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph(info.UploadFusionSubgraph)); + return new CreateClientCommandMutationResult(MapNonNullableICreateClientCommandMutation_CreateClient(info.CreateClient)); } - throw new global::System.ArgumentException("UploadFusionSubgraphResultInfo expected."); + throw new global::System.ArgumentException("CreateClientCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient MapNonNullableICreateClientCommandMutation_CreateClient(global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData data) { - IUploadFusionSubgraph_UploadFusionSubgraph returnValue = default !; - if (data.__typename.Equals("UploadFusionSubgraphPayload", global::System.StringComparison.Ordinal)) + ICreateClientCommandMutation_CreateClient returnValue = default !; + if (data.__typename.Equals("CreateClientPayload", global::System.StringComparison.Ordinal)) { - returnValue = new UploadFusionSubgraph_UploadFusionSubgraph_UploadFusionSubgraphPayload(MapIUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(data.FusionSubgraphVersion), MapIUploadFusionSubgraph_UploadFusionSubgraph_ErrorsNonNullableArray(data.Errors)); + returnValue = new CreateClientCommandMutation_CreateClient_CreateClientPayload(MapICreateClientCommandMutation_CreateClient_Client(data.Client), MapICreateClientCommandMutation_CreateClient_ErrorsNonNullableArray(data.Errors)); } else { @@ -176860,17 +176829,17 @@ public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion? MapIUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client? MapICreateClientCommandMutation_CreateClient_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion returnValue = default !; - if (data.__typename.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal)) + ICreateClientCommandMutation_CreateClient_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new UploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion_FusionSubgraphVersion(data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateClientCommandMutation_CreateClient_Client_Client(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapIShowClientCommandQuery_Node_Api_1(data.Api), MapIShowClientCommandQuery_Node_Versions(data.Versions)); } else { @@ -176880,44 +176849,68 @@ public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUploadFusionSubgraph_UploadFusionSubgraph_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? MapIShowClientCommandQuery_Node_Api_1(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - if (list is null) + if (data is null) { return null; } - var uploadFusionSubgraphErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData child in list) + IShowClientCommandQuery_Node_Api_1 returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - uploadFusionSubgraphErrors.Add(MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph_Errors(child)); + returnValue = new ShowClientCommandQuery_Node_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); } - return uploadFusionSubgraphErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadFusionSubgraph_UploadFusionSubgraph_Errors MapNonNullableIUploadFusionSubgraph_UploadFusionSubgraph_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? MapIShowClientCommandQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) { - IUploadFusionSubgraph_UploadFusionSubgraph_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidFusionSourceSchemaArchiveErrorData invalidFusionSourceSchemaArchiveError) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_InvalidFusionSourceSchemaArchiveError(invalidFusionSourceSchemaArchiveError.Message ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + + IShowClientCommandQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_ClientVersionConnection(MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadFusionSubgraph_UploadFusionSubgraph_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + clientVersionEdges.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); + } + + return clientVersionEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + { + IShowClientCommandQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -176927,57 +176920,43 @@ public UploadFusionSubgraphResult Create(global::StrawberryShake.IOperationResul return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public UploadFusionSubgraphResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData uploadFusionSubgraph) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) { - UploadFusionSubgraph = uploadFusionSubgraph; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData UploadFusionSubgraph { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new UploadFusionSubgraphResultInfo(UploadFusionSubgraph); + return returnValue; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public CreateMcpFeatureCollectionCommandMutationResultFactory() + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationResult); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public CreateMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is CreateMcpFeatureCollectionCommandMutationResultInfo info) + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) { - return new CreateMcpFeatureCollectionCommandMutationResult(MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(info.CreateMcpFeatureCollection)); + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - throw new global::System.ArgumentException("CreateMcpFeatureCollectionCommandMutationResultInfo expected."); + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) { - ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection returnValue = default !; - if (data.__typename.Equals("CreateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload(MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(data.McpFeatureCollection), MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); } else { @@ -176987,17 +176966,17 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) { if (data is null) { return null; } - ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -177007,32 +176986,47 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IShowClientCommandQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var createMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData child in list) + var createClientErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData child in list) { - createMcpFeatureCollectionErrors.Add(MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors(child)); + createClientErrors.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Errors(child)); } - return createMcpFeatureCollectionErrors; + return createClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Errors MapNonNullableICreateClientCommandMutation_CreateClient_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData data) { - ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors? returnValue; + ICreateClientCommandMutation_CreateClient_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutation_CreateClient_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateClientCommandMutation_CreateClient_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -177050,49 +177044,214 @@ public CreateMcpFeatureCollectionCommandMutationResult Create(global::Strawberry // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class CreateClientCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData createMcpFeatureCollection) + public CreateClientCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData createClient) { - CreateMcpFeatureCollection = createMcpFeatureCollection; + CreateClient = createClient; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData CreateMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData CreateClient { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreateMcpFeatureCollectionCommandMutationResultInfo(CreateMcpFeatureCollection); + return new CreateClientCommandMutationResultInfo(CreateClient); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ShowApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public DeleteMcpFeatureCollectionByIdCommandMutationResultFactory() + public ShowApiCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQueryResult); - public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ShowApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is DeleteMcpFeatureCollectionByIdCommandMutationResultInfo info) + if (dataInfo is ShowApiCommandQueryResultInfo info) { - return new DeleteMcpFeatureCollectionByIdCommandMutationResult(MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(info.DeleteMcpFeatureCollectionById)); + return new ShowApiCommandQueryResult(MapIShowApiCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("DeleteMcpFeatureCollectionByIdCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("ShowApiCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node? MapIShowApiCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById returnValue = default !; - if (data.__typename.Equals("DeleteMcpFeatureCollectionByIdPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload(MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(data.McpFeatureCollection), MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_ErrorsNonNullableArray(data.Errors)); + return null; + } + + IShowApiCommandQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Api(api.Id ?? throw new global::System.ArgumentNullException(), api.Name ?? throw new global::System.ArgumentNullException(), api.Path ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(api.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(api.Settings)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ApiDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ApiKey(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Client(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_ClientVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_CoordinateClientUsageMetrics(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Environment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_FusionConfigurationChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_FusionConfigurationDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLDirectiveDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLEnumTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLEnumValueDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_SchemaDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Stage(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_User(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_Workspace(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowApiCommandQuery_Node_WorkspaceDocument(); } else { @@ -177102,17 +177261,17 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::Strawb return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { if (data is null) { return null; } - IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -177122,32 +177281,27 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::Strawb return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) { - if (list is null) + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) { - return null; + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); } - - var deleteMcpFeatureCollectionByIdErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData child in list) + else { - deleteMcpFeatureCollectionByIdErrors.Add(MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors(child)); + throw new global::System.NotSupportedException(); } - return deleteMcpFeatureCollectionByIdErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) { - IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); } else { @@ -177165,214 +177319,217 @@ public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::Strawb // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ShowApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData deleteMcpFeatureCollectionById) + public ShowApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { - DeleteMcpFeatureCollectionById = deleteMcpFeatureCollectionById; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData DeleteMcpFeatureCollectionById { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(DeleteMcpFeatureCollectionById); + return new ShowApiCommandQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class DeleteApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListMcpFeatureCollectionCommandQueryResultFactory() + public DeleteApiCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQueryResult); - public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public DeleteApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ListMcpFeatureCollectionCommandQueryResultInfo info) + if (dataInfo is DeleteApiCommandQueryResultInfo info) { - return new ListMcpFeatureCollectionCommandQueryResult(MapIListMcpFeatureCollectionCommandQuery_Node(info.Node)); + return new DeleteApiCommandQueryResult(MapIDeleteApiCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("ListMcpFeatureCollectionCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("DeleteApiCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? MapIListMcpFeatureCollectionCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node? MapIDeleteApiCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { if (data is null) { return null; } - IListMcpFeatureCollectionCommandQuery_Node? returnValue; + IDeleteApiCommandQuery_Node? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Api(MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(api.McpFeatureCollections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Api(api.Name ?? throw new global::System.ArgumentNullException(), api.Version ?? throw new global::System.ArgumentNullException(), MapIDeleteApiCommandQuery_Node_Workspace_1(api.Workspace)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ApiDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ApiDocument(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ApiKey(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ApiKey(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Client(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Client(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_ClientVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_CoordinateClientUsageMetrics(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Environment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Environment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_FusionConfigurationChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_FusionConfigurationDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLDirectiveDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLEnumTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLEnumValueDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInputObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInputObjectTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLInterfaceTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLScalarTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_GraphQLUnionTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Group(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Group(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_McpFeatureCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OpenApiCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Organization(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Organization(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_OrganizationMember(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_SchemaChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_SchemaDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Stage(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Stage(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_User(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_User(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Workspace(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_Workspace(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandQuery_Node_WorkspaceDocument(); } else { @@ -177382,17 +177539,17 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandQuery_Node_Workspace_1? MapIDeleteApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { if (data is null) { return null; } - IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections returnValue = default !; - if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal)) + IDeleteApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(data.Edges), MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new DeleteApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -177402,28 +177559,60 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - return null; - } + return Create(dataInfo, snapshot); + } + } - var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public DeleteApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + { + Node = node; + } + + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new DeleteApiCommandQueryResultInfo(Node); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public DeleteApiCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutationResult); + + public DeleteApiCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is DeleteApiCommandMutationResultInfo info) { - apiMcpFeatureCollectionsEdges.Add(MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(child)); + return new DeleteApiCommandMutationResult(MapNonNullableIDeleteApiCommandMutation_DeleteApiById(info.DeleteApiById)); } - return apiMcpFeatureCollectionsEdges; + throw new global::System.ArgumentException("DeleteApiCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById MapNonNullableIDeleteApiCommandMutation_DeleteApiById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData data) { - IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges returnValue = default !; - if (data.__typename.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal)) + IDeleteApiCommandMutation_DeleteApiById returnValue = default !; + if (data.__typename.Equals("DeleteApiByIdPayload", global::System.StringComparison.Ordinal)) { - returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new DeleteApiCommandMutation_DeleteApiById_DeleteApiByIdPayload(MapIDeleteApiCommandMutation_DeleteApiById_Api(data.Api), MapIDeleteApiCommandMutation_DeleteApiById_ErrorsNonNullableArray(data.Errors)); } else { @@ -177433,12 +177622,17 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Api? MapIDeleteApiCommandMutation_DeleteApiById_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + return null; + } + + IDeleteApiCommandMutation_DeleteApiById_Api returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new DeleteApiCommandMutation_DeleteApiById_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(data.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); } else { @@ -177448,12 +177642,17 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + return null; + } + + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -177463,60 +177662,27 @@ public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ListMcpFeatureCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) - { - Node = node; - } - - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ListMcpFeatureCollectionCommandQueryResultInfo(Node); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public PublishMcpFeatureCollectionCommandMutationResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationResult); - - public PublishMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) { - if (dataInfo is PublishMcpFeatureCollectionCommandMutationResultInfo info) + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) { - return new PublishMcpFeatureCollectionCommandMutationResult(MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(info.PublishMcpFeatureCollection)); + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); } - throw new global::System.ArgumentException("PublishMcpFeatureCollectionCommandMutationResultInfo expected."); + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) { - IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection returnValue = default !; - if (data.__typename.Equals("PublishMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) { - returnValue = new PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload(data.Id, MapIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); } else { @@ -177526,40 +177692,36 @@ public PublishMcpFeatureCollectionCommandMutationResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIDeleteApiCommandMutation_DeleteApiById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var publishMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData child in list) + var deleteApiByIdErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData child in list) { - publishMcpFeatureCollectionErrors.Add(MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors(child)); + deleteApiByIdErrors.Add(MapNonNullableIDeleteApiCommandMutation_DeleteApiById_Errors(child)); } - return publishMcpFeatureCollectionErrors; + return deleteApiByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiCommandMutation_DeleteApiById_Errors MapNonNullableIDeleteApiCommandMutation_DeleteApiById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData data) { - IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) + IDeleteApiCommandMutation_DeleteApiById_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionNotFoundErrorData mcpFeatureCollectionVersionNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDeletionFailedErrorData apiDeletionFailedError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError(mcpFeatureCollectionVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiCommandMutation_DeleteApiById_Errors_ApiDeletionFailedError(apiDeletionFailedError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -177577,103 +177739,140 @@ public PublishMcpFeatureCollectionCommandMutationResult Create(global::Strawberr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class DeleteApiCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PublishMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData publishMcpFeatureCollection) + public DeleteApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData deleteApiById) { - PublishMcpFeatureCollection = publishMcpFeatureCollection; + DeleteApiById = deleteApiById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData PublishMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData DeleteApiById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PublishMcpFeatureCollectionCommandMutationResultInfo(PublishMcpFeatureCollection); + return new DeleteApiCommandMutationResultInfo(DeleteApiById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListApiCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public PublishMcpFeatureCollectionCommandSubscriptionResultFactory() + public ListApiCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQueryResult); - public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListApiCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is PublishMcpFeatureCollectionCommandSubscriptionResultInfo info) + if (dataInfo is ListApiCommandQueryResultInfo info) { - return new PublishMcpFeatureCollectionCommandSubscriptionResult(MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate(info.OnMcpFeatureCollectionVersionPublishingUpdate)); + return new ListApiCommandQueryResult(MapIListApiCommandQuery_WorkspaceById(info.WorkspaceById)); } - throw new global::System.ArgumentException("PublishMcpFeatureCollectionCommandSubscriptionResultInfo expected."); + throw new global::System.ArgumentException("ListApiCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById? MapIListApiCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishFailedData mcpFeatureCollectionVersionPublishFailed) + if (data is null) { - if (!mcpFeatureCollectionVersionPublishFailed.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed(mcpFeatureCollectionVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionPublishFailed.State!.Value, MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ErrorsNonNullableArray(mcpFeatureCollectionVersionPublishFailed.Errors)); + IListApiCommandQuery_WorkspaceById returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiCommandQuery_WorkspaceById_Workspace(MapIListApiCommandQuery_WorkspaceById_Apis(data.Apis)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishSuccessData mcpFeatureCollectionVersionPublishSuccess) + else { - if (!mcpFeatureCollectionVersionPublishSuccess.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess(mcpFeatureCollectionVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionPublishSuccess.State!.Value); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis? MapIListApiCommandQuery_WorkspaceById_Apis(global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? data) + { + if (data is null) + { + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + + IListApiCommandQuery_WorkspaceById_Apis returnValue = default !; + if (data.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal)) { - if (!operationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + returnValue = new ListApiCommandQuery_WorkspaceById_Apis_ApisConnection(MapIListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(data.Edges), MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) + + var apisEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData child in list) { - if (!processingTaskApproved.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + apisEdges.Add(MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(child)); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); + return apisEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData data) + { + IListApiCommandQuery_WorkspaceById_Apis_Edges returnValue = default !; + if (data.__typename.Equals("ApisEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiCommandQuery_WorkspaceById_Apis_Edges_ApisEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) + else { - if (!processingTaskIsQueued.QueuePosition.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_Edges_Node MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData data) + { + IListApiCommandQuery_WorkspaceById_Apis_Edges_Node returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiCommandQuery_WorkspaceById_Apis_Edges_Node_Api(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(data.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + { + if (data is null) { - if (!waitForApproval.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -177683,44 +177882,122 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) { - if (list is null) + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) { - throw new global::System.ArgumentNullException(); + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); } - var mcpFeatureCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData child in list) + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) + { + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) { - mcpFeatureCollectionVersionPublishErrors.Add(MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors(child)); + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionVersionPublishErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiCommandQuery_WorkspaceById_Apis_PageInfo MapNonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + IListApiCommandQuery_WorkspaceById_Apis_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListApiCommandQuery_WorkspaceById_Apis_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + { + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListApiCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ListApiCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) + { + WorkspaceById = workspaceById; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ListApiCommandQueryResultInfo(WorkspaceById); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetApiSettingsCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public SetApiSettingsCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutationResult); + + public SetApiSettingsCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is SetApiSettingsCommandMutationResultInfo info) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + return new SetApiSettingsCommandMutationResult(MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings(info.UpdateApiSettings)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + + throw new global::System.ArgumentException("SetApiSettingsCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData data) + { + ISetApiSettingsCommandMutation_UpdateApiSettings returnValue = default !; + if (data.__typename.Equals("UpdateApiSettingsPayload", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SetApiSettingsCommandMutation_UpdateApiSettings_UpdateApiSettingsPayload(MapISetApiSettingsCommandMutation_UpdateApiSettings_Api(data.Api), MapISetApiSettingsCommandMutation_UpdateApiSettings_ErrorsNonNullableArray(data.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Api? MapISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + { + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + + ISetApiSettingsCommandMutation_UpdateApiSettings_Api returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SetApiSettingsCommandMutation_UpdateApiSettings_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(data.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); } else { @@ -177730,28 +178007,32 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + } + else { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionValidationCollections; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); } else { @@ -177761,17 +178042,12 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) { - if (data is null) - { - return null; - } - - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); } else { @@ -177781,32 +178057,32 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapISetApiSettingsCommandMutation_UpdateApiSettings_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) + var updateApiSettingsErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData child in list) { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + updateApiSettingsErrors.Add(MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings_Errors(child)); } - return mcpFeatureCollectionValidationEntitys; + return updateApiSettingsErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISetApiSettingsCommandMutation_UpdateApiSettings_Errors MapNonNullableISetApiSettingsCommandMutation_UpdateApiSettings_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) + ISetApiSettingsCommandMutation_UpdateApiSettings_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutation_UpdateApiSettings_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.SetApiSettingsCommandMutation_UpdateApiSettings_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -177816,32 +178092,57 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) - { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetApiSettingsCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public SetApiSettingsCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData updateApiSettings) + { + UpdateApiSettings = updateApiSettings; + } - return mcpFeatureCollectionValidationEntityErrors; + public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData UpdateApiSettings { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new SetApiSettingsCommandMutationResultInfo(UpdateApiSettings); } + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public CreateApiCommandMutationResultFactory() { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutationResult); + + public CreateApiCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is CreateApiCommandMutationResultInfo info) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + return new CreateApiCommandMutationResult(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges(info.PushWorkspaceChanges)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + + throw new global::System.ArgumentException("CreateApiCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData data) + { + ICreateApiCommandMutation_PushWorkspaceChanges returnValue = default !; + if (data.__typename.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(MapICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(data.Changes), MapICreateApiCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(data.Errors)); } else { @@ -177851,28 +178152,28 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) + var workspaceChangePayloads = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData child in list) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + workspaceChangePayloads.Add(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return workspaceChangePayloads; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + ICreateApiCommandMutation_PushWorkspaceChanges_Changes returnValue = default !; + if (data.__typename.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(data.ReferenceId ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error(data.Error), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result(data.Result)); } else { @@ -177882,33 +178183,37 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Error? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData changeValidationFailed) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(changeValidationFailed.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData hasBeenChangedConflict) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(hasBeenChangedConflict.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData hasBeenDeletedConflict) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(hasBeenDeletedConflict.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData identifierCollisionConflict) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(identifierCollisionConflict.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData unexpectedErrorOnChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(unexpectedErrorOnChange.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData workspaceNotFoundForChange) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(workspaceNotFoundForChange.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -177918,28 +178223,29 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) + ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument(); } - - return clientDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Api(api.Name ?? throw new global::System.ArgumentNullException(), api.Id ?? throw new global::System.ArgumentNullException(), api.Path ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(api.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(api.Settings)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(); } else { @@ -177949,17 +178255,17 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -177969,28 +178275,27 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) { - if (list is null) + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) { - throw new global::System.ArgumentNullException(); + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); } - - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + else { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + throw new global::System.NotSupportedException(); } - return persistedQueryValidationFaileds; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; - if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); } else { @@ -178000,28 +178305,32 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateApiCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData child in list) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + pushWorkspaceChangesErrors.Add(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Errors(child)); } - return persistedQueryErrors; + return pushWorkspaceChangesErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Errors MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; - if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + ICreateApiCommandMutation_PushWorkspaceChanges_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData changeStructureInvalid) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(changeStructureInvalid.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -178031,28 +178340,57 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - return null; - } + return Create(dataInfo, snapshot); + } + } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CreateApiCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData pushWorkspaceChanges) + { + PushWorkspaceChanges = pushWorkspaceChanges; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData PushWorkspaceChanges { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CreateApiCommandMutationResultInfo(PushWorkspaceChanges); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UpdateStagesResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public UpdateStagesResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesResult); + + public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is UpdateStagesResultInfo info) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + return new UpdateStagesResult(MapNonNullableIUpdateStages_UpdateStages(info.UpdateStages)); } - return persistedQueryErrorLocations; + throw new global::System.ArgumentException("UpdateStagesResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages MapNonNullableIUpdateStages_UpdateStages(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; - if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + IUpdateStages_UpdateStages returnValue = default !; + if (data.__typename.Equals("UpdateStagesPayload", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new UpdateStages_UpdateStages_UpdateStagesPayload(MapIUpdateStages_UpdateStages_Api(data.Api), MapIUpdateStages_UpdateStages_ErrorsNonNullableArray(data.Errors)); } else { @@ -178062,44 +178400,48 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? MapIUpdateStages_UpdateStages_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) + IUpdateStages_UpdateStages_Api returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); + returnValue = new UpdateStages_UpdateStages_Api_Api(MapNonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(data.Stages ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); } - return fusionConfigurationDeploymentErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + + var stages = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + stages.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + + return stages; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages MapNonNullableIUpdateStages_UpdateStages_Api_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) + { + IUpdateStages_UpdateStages_Api_Stages returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new UpdateStages_UpdateStages_Api_Stages_Stage(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.DisplayName ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(data.Conditions ?? throw new global::System.ArgumentNullException())); } else { @@ -178109,114 +178451,48 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) + var stageConditions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData child in list) { - schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); + stageConditions.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); } - return schemaChangeLogEntrys; + return stageConditions; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) - { - if (!directiveModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) - { - if (!enumModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) - { - if (!inputObjectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) + IUpdateStages_UpdateStages_Api_Stages_Conditions? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData afterStageCondition) { - if (!interfaceModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(afterStageCondition.AfterStage)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) + else { - if (!objectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) - { - if (!scalarModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) - { - if (!typeSystemMemberAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return returnValue; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + { + if (data is null) { - if (!typeSystemMemberModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) - { - if (!typeSystemMemberRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) + IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - if (!unionModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); + returnValue = new UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -178226,88 +178502,40 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIUpdateStages_UpdateStages_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var directiveChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData child in list) + var updateStagesErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData child in list) { - directiveChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(child)); + updateStagesErrors.Add(MapNonNullableIUpdateStages_UpdateStages_Errors(child)); } - return directiveChanges; + return updateStagesErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors MapNonNullableIUpdateStages_UpdateStages_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) - { - if (!argumentAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(argumentAdded.__typename ?? throw new global::System.ArgumentNullException(), argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) - { - if (!argumentChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) + IUpdateStages_UpdateStages_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - if (!argumentRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(argumentRemoved.__typename ?? throw new global::System.ArgumentNullException(), argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData directiveLocationAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StagesHavePublishedDependenciesErrorData stagesHavePublishedDependenciesError) { - if (!directiveLocationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (!directiveLocationAdded.Location.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(directiveLocationAdded.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationAdded.Severity!.Value, directiveLocationAdded.Location!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(stagesHavePublishedDependenciesError.__typename ?? throw new global::System.ArgumentNullException(), stagesHavePublishedDependenciesError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(stagesHavePublishedDependenciesError.Stages)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData directiveLocationRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageValidationErrorData stageValidationError) { - if (!directiveLocationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (!directiveLocationRemoved.Location.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(directiveLocationRemoved.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationRemoved.Severity!.Value, directiveLocationRemoved.Location!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StageValidationError(stageValidationError.Message ?? throw new global::System.ArgumentNullException(), stageValidationError.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -178317,51 +178545,28 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var argumentChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData child in list) + var stages = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) { - argumentChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(child)); + stages.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages(child)); } - return argumentChanges; + return stages; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages MapNonNullableIUpdateStages_UpdateStages_Errors_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) - { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(deprecatedChange.__typename ?? throw new global::System.ArgumentNullException(), deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + IUpdateStages_UpdateStages_Errors_Stages returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(typeChanged.__typename ?? throw new global::System.ArgumentNullException(), typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException()); + returnValue = new UpdateStages_UpdateStages_Errors_Stages_Stage(data.Name ?? throw new global::System.ArgumentNullException(), MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(data.PublishedSchema), MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(data.PublishedClients ?? throw new global::System.ArgumentNullException())); } else { @@ -178371,60 +178576,37 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var enumChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData child in list) + IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema returnValue = default !; + if (data.__typename.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal)) { - enumChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(child)); + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(data.Version)); + } + else + { + throw new global::System.NotSupportedException(); } - return enumChanges; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData enumValueAdded) + if (data is null) { - if (!enumValueAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(enumValueAdded.__typename ?? throw new global::System.ArgumentNullException(), enumValueAdded.Severity!.Value, enumValueAdded.Coordinate ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData enumValueChanged) - { - if (!enumValueChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(enumValueChanged.__typename ?? throw new global::System.ArgumentNullException(), enumValueChanged.Severity!.Value, enumValueChanged.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(enumValueChanged.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData enumValueRemoved) + IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version returnValue = default !; + if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) { - if (!enumValueRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(enumValueRemoved.__typename ?? throw new global::System.ArgumentNullException(), enumValueRemoved.Severity!.Value, enumValueRemoved.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(data.Tag ?? throw new global::System.ArgumentNullException()); } else { @@ -178434,42 +178616,43 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var enumValueChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData child in list) + var publishedClients = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData child in list) { - enumValueChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(child)); + publishedClients.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(child)); } - return enumValueChanges; + return publishedClients; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + IUpdateStages_UpdateStages_Errors_Stages_PublishedClients returnValue = default !; + if (data.__typename.Equals("PublishedClient", global::System.StringComparison.Ordinal)) { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(data.Client ?? throw new global::System.ArgumentNullException()), MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(data.PublishedVersions ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + { + IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + { + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -178479,60 +178662,48 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData child in list) + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) { - inputObjectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(child)); + publishedClientVersions.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(child)); } - return inputObjectChanges; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion(MapIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(data.Version)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) + else { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) - { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData inputFieldChanged) + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) + { + if (data is null) { - if (!inputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(inputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), inputFieldChanged.Severity!.Value, inputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), inputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(inputFieldChanged.Changes)); + IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion(data.Tag ?? throw new global::System.ArgumentNullException()); } else { @@ -178542,312 +178713,222 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var inputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UpdateStagesResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public UpdateStagesResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData updateStages) + { + UpdateStages = updateStages; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData UpdateStages { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new UpdateStagesResultInfo(UpdateStages); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ListStagesQueryResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryResult); + + public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ListStagesQueryResultInfo info) { - inputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(child)); + return new ListStagesQueryResult(MapIListStagesQuery_Node(info.Node)); } - return inputFieldChanges; + throw new global::System.ArgumentException("ListStagesQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? MapIListStagesQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + if (data is null) { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + IListStagesQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Api(MapNonNullableIListStagesQuery_Node_StagesNonNullableArray(api.Stages)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ApiDocument(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ApiKey(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Client(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientChangeLog(); } - - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - interfaceChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientDeployment(); } - - return interfaceChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientVersion(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_CoordinateClientUsageMetrics(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Environment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - if (!interfaceImplementationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_FusionConfigurationChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - if (!interfaceImplementationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_FusionConfigurationDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) { - if (!outputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData possibleTypeAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) { - if (!possibleTypeAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(possibleTypeAdded.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeAdded.Severity!.Value, possibleTypeAdded.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLDirectiveDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData possibleTypeRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) { - if (!possibleTypeRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(possibleTypeRemoved.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeRemoved.Severity!.Value, possibleTypeRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLEnumTypeDefinition(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLEnumValueDefinition(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInputObjectFieldDefinition(); } - - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) { - outputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInputObjectTypeDefinition(); } - - return outputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) { - if (!argumentAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException(), argumentAdded.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) { - if (!argumentChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceFieldDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) { - if (!argumentRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException(), argumentRemoved.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceTypeDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) { - if (!deprecatedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLObjectFieldDefinition(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) { - if (!typeChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLScalarTypeDefinition(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLUnionTypeDefinition(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Group(); } - - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) { - objectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollection(); } - - return objectChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - if (!fieldAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_SchemaDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) { - if (!fieldRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Stage(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) { - if (!interfaceImplementationAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_User(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) { - if (!interfaceImplementationRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Workspace(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) { - if (!outputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_WorkspaceDocument(); } else { @@ -178857,33 +178938,28 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIListStagesQuery_Node_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) + var stages = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) { - scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + stages.Add(MapNonNullableIListStagesQuery_Node_Stages(child)); } - return scalarChanges; + return stages; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node_Stages MapNonNullableIListStagesQuery_Node_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IListStagesQuery_Node_Stages returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new ListStagesQuery_Node_Stages_Stage(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.DisplayName ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(data.Conditions ?? throw new global::System.ArgumentNullException())); } else { @@ -178893,51 +178969,28 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) + var stageConditions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData child in list) { - unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); + stageConditions.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); } - return unionChanges; + return stageConditions; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) - { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) - { - if (!unionMemberAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) + IUpdateStages_UpdateStages_Api_Stages_Conditions? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData afterStageCondition) { - if (!unionMemberRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(afterStageCondition.AfterStage)); } else { @@ -178947,28 +179000,17 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var graphQLSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) + if (data is null) { - graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + return null; } - return graphQLSchemaErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; - if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) + IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); + returnValue = new UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -178978,28 +179020,65 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ListStagesQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + { + Node = node; + } + + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ListStagesQueryResultInfo(Node); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ListEnvironmentCommandQueryResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQueryResult); + + public ListEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ListEnvironmentCommandQueryResultInfo info) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + return new ListEnvironmentCommandQueryResult(MapIListEnvironmentCommandQuery_WorkspaceById(info.WorkspaceById)); } - return openApiCollectionValidationCollections; + throw new global::System.ArgumentException("ListEnvironmentCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById? MapIListEnvironmentCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + if (data is null) + { + return null; + } + + IListEnvironmentCommandQuery_WorkspaceById returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Workspace(MapIListEnvironmentCommandQuery_WorkspaceById_Environments(data.Environments)); } else { @@ -179009,17 +179088,17 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments? MapIListEnvironmentCommandQuery_WorkspaceById_Environments(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + IListEnvironmentCommandQuery_WorkspaceById_Environments returnValue = default !; + if (data.__typename.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_EnvironmentsConnection(MapIListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(data.Edges), MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -179029,32 +179108,28 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) + var environmentsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + environmentsEdges.Add(MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(child)); } - return openApiCollectionValidationEntitys; + return environmentsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges returnValue = default !; + if (data.__typename.Equals("EnvironmentsEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_EnvironmentsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -179064,32 +179139,12 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) - { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); - } - - return openApiCollectionValidationEntityErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) + IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node returnValue = default !; + if (data.__typename.Equals("Environment", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Environment(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(data.Workspace)); } else { @@ -179099,28 +179154,32 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - if (list is null) + if (data is null) { return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); } - return openApiCollectionValidationDocumentErrorLocations; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo MapNonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -179130,129 +179189,242 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) - { - mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListEnvironmentCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ListEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) + { + WorkspaceById = workspaceById; + } - return mcpFeatureCollectionDeploymentErrors; + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ListEnvironmentCommandQueryResultInfo(WorkspaceById); } + } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ShowEnvironmentCommandQueryResultFactory() { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); - } - else + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQueryResult); + + public ShowEnvironmentCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ShowEnvironmentCommandQueryResultInfo info) { - throw new global::System.NotSupportedException(); + return new ShowEnvironmentCommandQueryResult(MapIShowEnvironmentCommandQuery_Node(info.Node)); } - return returnValue; + throw new global::System.ArgumentException("ShowEnvironmentCommandQueryResultInfo expected."); } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IShowEnvironmentCommandQuery_Node? MapIShowEnvironmentCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) + IShowEnvironmentCommandQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) { - openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Api(); } - - return openApiCollectionDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ApiDocument(); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ApiKey(); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Client(); } - - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientChangeLog(); } - - return schemaDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_ClientVersion(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_CoordinateClientUsageMetrics(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - if (!schemaVersionSyntaxError.Column.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (!schemaVersionSyntaxError.Position.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (!schemaVersionSyntaxError.Line.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Environment(environment.Id ?? throw new global::System.ArgumentNullException(), environment.Name ?? throw new global::System.ArgumentNullException(), MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(environment.Workspace)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_FusionConfigurationChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_FusionConfigurationDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLDirectiveDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLEnumTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLEnumValueDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_SchemaDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Stage(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_User(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_Workspace(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowEnvironmentCommandQuery_Node_WorkspaceDocument(); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + { + if (data is null) + { + return null; + } + + IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -179270,49 +179442,52 @@ public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::Straw // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ShowEnvironmentCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PublishMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData onMcpFeatureCollectionVersionPublishingUpdate) + public ShowEnvironmentCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { - OnMcpFeatureCollectionVersionPublishingUpdate = onMcpFeatureCollectionVersionPublishingUpdate; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData OnMcpFeatureCollectionVersionPublishingUpdate { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PublishMcpFeatureCollectionCommandSubscriptionResultInfo(OnMcpFeatureCollectionVersionPublishingUpdate); + return new ShowEnvironmentCommandQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreateEnvironmentCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public UploadMcpFeatureCollectionCommandMutationResultFactory() + public CreateEnvironmentCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutationResult); - public UploadMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CreateEnvironmentCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is UploadMcpFeatureCollectionCommandMutationResultInfo info) + if (dataInfo is CreateEnvironmentCommandMutationResultInfo info) { - return new UploadMcpFeatureCollectionCommandMutationResult(MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(info.UploadMcpFeatureCollection)); + return new CreateEnvironmentCommandMutationResult(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(info.PushWorkspaceChanges)); } - throw new global::System.ArgumentException("UploadMcpFeatureCollectionCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("CreateEnvironmentCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData data) { - IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection returnValue = default !; - if (data.__typename.Equals("UploadMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) + ICreateEnvironmentCommandMutation_PushWorkspaceChanges returnValue = default !; + if (data.__typename.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal)) { - returnValue = new UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload(MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(data.McpFeatureCollectionVersion), MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_PushWorkspaceChangesPayload(MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(data.Changes), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(data.Errors)); } else { @@ -179322,17 +179497,68 @@ public UploadMcpFeatureCollectionCommandMutationResult Create(global::Strawberry return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData? data) + private global::System.Collections.Generic.IReadOnlyList? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var workspaceChangePayloads = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData child in list) + { + workspaceChangePayloads.Add(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(child)); + } + + return workspaceChangePayloads; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData data) + { + ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes returnValue = default !; + if (data.__typename.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_WorkspaceChangePayload(data.ReferenceId ?? throw new global::System.ArgumentNullException(), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error(data.Error), MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result(data.Result)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? data) { if (data is null) { return null; } - IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal)) + ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData changeValidationFailed) { - returnValue = new UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_ChangeValidationFailed(changeValidationFailed.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData hasBeenChangedConflict) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenChangedConflict(hasBeenChangedConflict.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData hasBeenDeletedConflict) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_HasBeenDeletedConflict(hasBeenDeletedConflict.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData identifierCollisionConflict) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_IdentifierCollisionConflict(identifierCollisionConflict.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData unexpectedErrorOnChange) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_UnexpectedErrorOnChange(unexpectedErrorOnChange.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData workspaceNotFoundForChange) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Error_WorkspaceNotFoundForChange(workspaceNotFoundForChange.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179342,44 +179568,84 @@ public UploadMcpFeatureCollectionCommandMutationResult Create(global::Strawberry return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result(global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? data) { - if (list is null) + if (data is null) { return null; } - var uploadMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData child in list) + ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - uploadMcpFeatureCollectionErrors.Add(MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_ApiDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Api(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_WorkspaceDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Environment(environment.Name ?? throw new global::System.ArgumentNullException(), environment.Id ?? throw new global::System.ArgumentNullException(), MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(environment.Workspace)); + } + else + { + throw new global::System.NotSupportedException(); } - return uploadMcpFeatureCollectionErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace? MapIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + + IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapICreateEnvironmentCommandMutation_PushWorkspaceChanges_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidMcpFeatureCollectionArchiveErrorData invalidMcpFeatureCollectionArchiveError) + + var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError(invalidMcpFeatureCollectionArchiveError.Message ?? throw new global::System.ArgumentNullException()); + pushWorkspaceChangesErrors.Add(MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors(child)); + } + + return pushWorkspaceChangesErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors MapNonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData data) + { + ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData changeStructureInvalid) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateEnvironmentCommandMutation_PushWorkspaceChanges_Errors_ChangeStructureInvalid(changeStructureInvalid.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179397,49 +179663,54 @@ public UploadMcpFeatureCollectionCommandMutationResult Create(global::Strawberry // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class CreateEnvironmentCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public UploadMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData uploadMcpFeatureCollection) + public CreateEnvironmentCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData pushWorkspaceChanges) { - UploadMcpFeatureCollection = uploadMcpFeatureCollection; + PushWorkspaceChanges = pushWorkspaceChanges; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData UploadMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData PushWorkspaceChanges { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new UploadMcpFeatureCollectionCommandMutationResultInfo(UploadMcpFeatureCollection); + return new CreateEnvironmentCommandMutationResultInfo(PushWorkspaceChanges); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListApiKeyCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ValidateMcpFeatureCollectionCommandMutationResultFactory() + public ListApiKeyCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQueryResult); - public ValidateMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListApiKeyCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ValidateMcpFeatureCollectionCommandMutationResultInfo info) + if (dataInfo is ListApiKeyCommandQueryResultInfo info) { - return new ValidateMcpFeatureCollectionCommandMutationResult(MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(info.ValidateMcpFeatureCollection)); + return new ListApiKeyCommandQueryResult(MapIListApiKeyCommandQuery_WorkspaceById(info.WorkspaceById)); } - throw new global::System.ArgumentException("ValidateMcpFeatureCollectionCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("ListApiKeyCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById? MapIListApiKeyCommandQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection returnValue = default !; - if (data.__typename.Equals("ValidateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload(data.Id, MapIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); + return null; + } + + IListApiKeyCommandQuery_WorkspaceById returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiKeyCommandQuery_WorkspaceById_Workspace(MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys(data.ApiKeys)); } else { @@ -179449,36 +179720,98 @@ public ValidateMcpFeatureCollectionCommandMutationResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? data) + { + if (data is null) + { + return null; + } + + IListApiKeyCommandQuery_WorkspaceById_ApiKeys returnValue = default !; + if (data.__typename.Equals("ApiKeysConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_ApiKeysConnection(MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(data.Edges), MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var validateMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData child in list) + var apiKeysEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData child in list) { - validateMcpFeatureCollectionErrors.Add(MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors(child)); + apiKeysEdges.Add(MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(child)); } - return validateMcpFeatureCollectionErrors; + return apiKeysEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData data) { - IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges returnValue = default !; + if (data.__typename.Equals("ApiKeysEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_ApiKeysEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData data) + { + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node returnValue = default !; + if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(data.Workspace)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + { + if (data is null) + { + return null; + } + + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo MapNonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -179496,81 +179829,104 @@ public ValidateMcpFeatureCollectionCommandMutationResult Create(global::Strawber // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListApiKeyCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData validateMcpFeatureCollection) + public ListApiKeyCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) { - ValidateMcpFeatureCollection = validateMcpFeatureCollection; + WorkspaceById = workspaceById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData ValidateMcpFeatureCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateMcpFeatureCollectionCommandMutationResultInfo(ValidateMcpFeatureCollection); + return new ListApiKeyCommandQueryResultInfo(WorkspaceById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreateApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ValidateMcpFeatureCollectionCommandSubscriptionResultFactory() + public CreateApiKeyCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutationResult); - public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CreateApiKeyCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ValidateMcpFeatureCollectionCommandSubscriptionResultInfo info) + if (dataInfo is CreateApiKeyCommandMutationResultInfo info) { - return new ValidateMcpFeatureCollectionCommandSubscriptionResult(MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate(info.OnMcpFeatureCollectionVersionValidationUpdate)); + return new CreateApiKeyCommandMutationResult(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey(info.CreateApiKey)); } - throw new global::System.ArgumentException("ValidateMcpFeatureCollectionCommandSubscriptionResultInfo expected."); + throw new global::System.ArgumentException("CreateApiKeyCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey MapNonNullableICreateApiKeyCommandMutation_CreateApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData data) { - IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationFailedData mcpFeatureCollectionVersionValidationFailed) + ICreateApiKeyCommandMutation_CreateApiKey returnValue = default !; + if (data.__typename.Equals("CreateApiKeyPayload", global::System.StringComparison.Ordinal)) { - if (!mcpFeatureCollectionVersionValidationFailed.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed(mcpFeatureCollectionVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionValidationFailed.State!.Value, MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ErrorsNonNullableArray(mcpFeatureCollectionVersionValidationFailed.Errors)); + returnValue = new CreateApiKeyCommandMutation_CreateApiKey_CreateApiKeyPayload(MapICreateApiKeyCommandMutation_CreateApiKey_Result(data.Result), MapICreateApiKeyCommandMutation_CreateApiKey_ErrorsNonNullableArray(data.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationSuccessData mcpFeatureCollectionVersionValidationSuccess) + else { - if (!mcpFeatureCollectionVersionValidationSuccess.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess(mcpFeatureCollectionVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionValidationSuccess.State!.Value); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result? MapICreateApiKeyCommandMutation_CreateApiKey_Result(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? data) + { + if (data is null) + { + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + + ICreateApiKeyCommandMutation_CreateApiKey_Result returnValue = default !; + if (data.__typename.Equals("ApiKeyWithSecret", global::System.StringComparison.Ordinal)) { - if (!operationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_ApiKeyWithSecret(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(data.Key ?? throw new global::System.ArgumentNullException()), data.Secret ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Result_Key MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData data) + { + ICreateApiKeyCommandMutation_CreateApiKey_Result_Key returnValue = default !; + if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Result_Key_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(data.Workspace)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + else { - if (!validationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + { + if (data is null) + { + return null; + } + + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -179580,44 +179936,48 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateApiKeyCommandMutation_CreateApiKey_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData child in list) + var createApiKeyErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData child in list) { - mcpFeatureCollectionVersionValidationErrors.Add(MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors(child)); + createApiKeyErrors.Add(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors(child)); } - return mcpFeatureCollectionVersionValidationErrors; + return createApiKeyErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Errors MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData data) { - IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationArchiveErrorData mcpFeatureCollectionValidationArchiveError) + ICreateApiKeyCommandMutation_CreateApiKey_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError(mcpFeatureCollectionValidationArchiveError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundData workspaceNotFound) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_WorkspaceNotFound(workspaceNotFound.__typename ?? throw new global::System.ArgumentNullException(), workspaceNotFound.Message ?? throw new global::System.ArgumentNullException(), workspaceNotFound.WorkspaceId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersonalWorkspaceNotSupportedErrorData personalWorkspaceNotSupportedError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_PersonalWorkspaceNotSupportedError(personalWorkspaceNotSupportedError.__typename ?? throw new global::System.ArgumentNullException(), personalWorkspaceNotSupportedError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_ValidationError(validationError.__typename ?? throw new global::System.ArgumentNullException(), validationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(validationError.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.RoleNotFoundErrorData roleNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateApiKeyCommandMutation_CreateApiKey_Errors_RoleNotFoundError(roleNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), roleNotFoundError.Message ?? throw new global::System.ArgumentNullException(), roleNotFoundError.RoleId ?? throw new global::System.ArgumentNullException()); } else { @@ -179627,28 +179987,28 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) + var validationErrorPropertys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData child in list) { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + validationErrorPropertys.Add(MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(child)); } - return mcpFeatureCollectionValidationCollections; + return validationErrorPropertys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors MapNonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) + ICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors returnValue = default !; + if (data.__typename.Equals("ValidationErrorProperty", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new CreateApiKeyCommandMutation_CreateApiKey_Errors_Errors_ValidationErrorProperty(data.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179658,52 +180018,57 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (data is null) - { - return null; - } + return Create(dataInfo, snapshot); + } + } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) - { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiKeyCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CreateApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData createApiKey) + { + CreateApiKey = createApiKey; + } - return returnValue; + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData CreateApiKey { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CreateApiKeyCommandMutationResultInfo(CreateApiKey); } + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public DeleteApiKeyCommandMutationResultFactory() { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutationResult); + + public DeleteApiKeyCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is DeleteApiKeyCommandMutationResultInfo info) { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + return new DeleteApiKeyCommandMutationResult(MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(info.DeleteApiKey)); } - return mcpFeatureCollectionValidationEntitys; + throw new global::System.ArgumentException("DeleteApiKeyCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData data) + { + IDeleteApiKeyCommandMutation_DeleteApiKey returnValue = default !; + if (data.__typename.Equals("DeleteApiKeyPayload", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new DeleteApiKeyCommandMutation_DeleteApiKey_DeleteApiKeyPayload(MapIDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(data.ApiKey), MapIDeleteApiKeyCommandMutation_DeleteApiKey_ErrorsNonNullableArray(data.Errors)); } else { @@ -179713,32 +180078,37 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey? MapIDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) + IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey returnValue = default !; + if (data.__typename.Equals("ApiKey", global::System.StringComparison.Ordinal)) { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); + returnValue = new DeleteApiKeyCommandMutation_DeleteApiKey_ApiKey_ApiKey(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(data.Workspace)); + } + else + { + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionValidationEntityErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace? MapIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + + IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace_Workspace(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -179748,28 +180118,32 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIDeleteApiKeyCommandMutation_DeleteApiKey_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) + var deleteApiKeyErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData child in list) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + deleteApiKeyErrors.Add(MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey_Errors(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return deleteApiKeyErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteApiKeyCommandMutation_DeleteApiKey_Errors MapNonNullableIDeleteApiKeyCommandMutation_DeleteApiKey_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IDeleteApiKeyCommandMutation_DeleteApiKey_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyNotFoundErrorData apiKeyNotFoundError) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutation_DeleteApiKey_Errors_ApiKeyNotFoundError(apiKeyNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiKeyNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiKeyNotFoundError.ApiKeyId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteApiKeyCommandMutation_DeleteApiKey_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179787,49 +180161,49 @@ public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::Stra // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class DeleteApiKeyCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData onMcpFeatureCollectionVersionValidationUpdate) + public DeleteApiKeyCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData deleteApiKey) { - OnMcpFeatureCollectionVersionValidationUpdate = onMcpFeatureCollectionVersionValidationUpdate; + DeleteApiKey = deleteApiKey; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData OnMcpFeatureCollectionVersionValidationUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData DeleteApiKey { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(OnMcpFeatureCollectionVersionValidationUpdate); + return new DeleteApiKeyCommandMutationResultInfo(DeleteApiKey); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class UploadMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CreateMockSchemaResultFactory() + public UploadMcpFeatureCollectionCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchemaResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutationResult); - public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public UploadMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CreateMockSchemaResultInfo info) + if (dataInfo is UploadMcpFeatureCollectionCommandMutationResultInfo info) { - return new CreateMockSchemaResult(MapNonNullableICreateMockSchema_CreateMockSchema(info.CreateMockSchema)); + return new UploadMcpFeatureCollectionCommandMutationResult(MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(info.UploadMcpFeatureCollection)); } - throw new global::System.ArgumentException("CreateMockSchemaResultInfo expected."); + throw new global::System.ArgumentException("UploadMcpFeatureCollectionCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema MapNonNullableICreateMockSchema_CreateMockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData data) { - ICreateMockSchema_CreateMockSchema returnValue = default !; - if (data.__typename.Equals("CreateMockSchemaPayload", global::System.StringComparison.Ordinal)) + IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection returnValue = default !; + if (data.__typename.Equals("UploadMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMockSchema_CreateMockSchema_CreateMockSchemaPayload(MapICreateMockSchema_CreateMockSchema_MockSchema(data.MockSchema), MapICreateMockSchema_CreateMockSchema_ErrorsNonNullableArray(data.Errors)); + returnValue = new UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_UploadMcpFeatureCollectionPayload(MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(data.McpFeatureCollectionVersion), MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -179839,17 +180213,17 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema? MapICreateMockSchema_CreateMockSchema_MockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion? MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData? data) { if (data is null) { return null; } - ICreateMockSchema_CreateMockSchema_MockSchema returnValue = default !; - if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) + IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); + returnValue = new UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion_McpFeatureCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -179859,12 +180233,48 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::System.Collections.Generic.IReadOnlyList? MapIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + return null; + } + + var uploadMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData child in list) + { + uploadMcpFeatureCollectionErrors.Add(MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors(child)); + } + + return uploadMcpFeatureCollectionErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors MapNonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData data) + { + IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidMcpFeatureCollectionArchiveErrorData invalidMcpFeatureCollectionArchiveError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidMcpFeatureCollectionArchiveError(invalidMcpFeatureCollectionArchiveError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179874,12 +180284,57 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public UploadMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData uploadMcpFeatureCollection) + { + UploadMcpFeatureCollection = uploadMcpFeatureCollection; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData UploadMcpFeatureCollection { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new UploadMcpFeatureCollectionCommandMutationResultInfo(UploadMcpFeatureCollection); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ValidateMcpFeatureCollectionCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutationResult); + + public ValidateMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ValidateMcpFeatureCollectionCommandMutationResultInfo info) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + return new ValidateMcpFeatureCollectionCommandMutationResult(MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(info.ValidateMcpFeatureCollection)); + } + + throw new global::System.ArgumentException("ValidateMcpFeatureCollectionCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData data) + { + IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection returnValue = default !; + if (data.__typename.Equals("ValidateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) + { + returnValue = new ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ValidateMcpFeatureCollectionPayload(data.Id, MapIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -179889,40 +180344,40 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateMockSchema_CreateMockSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var createMockSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData child in list) + var validateMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData child in list) { - createMockSchemaErrors.Add(MapNonNullableICreateMockSchema_CreateMockSchema_Errors(child)); + validateMcpFeatureCollectionErrors.Add(MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors(child)); } - return createMockSchemaErrors; + return validateMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_Errors MapNonNullableICreateMockSchema_CreateMockSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors MapNonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData data) { - ICreateMockSchema_CreateMockSchema_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + IValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData mockSchemaNonUniqueNameError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_MockSchemaNonUniqueNameError(mockSchemaNonUniqueNameError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Message ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_UnauthorizedOperation(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMockSchema_CreateMockSchema_Errors_ValidationError(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -179940,74 +180395,81 @@ public CreateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ValidateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData createMockSchema) + public ValidateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData validateMcpFeatureCollection) { - CreateMockSchema = createMockSchema; + ValidateMcpFeatureCollection = validateMcpFeatureCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData CreateMockSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData ValidateMcpFeatureCollection { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreateMockSchemaResultInfo(CreateMockSchema); + return new ValidateMcpFeatureCollectionCommandMutationResultInfo(ValidateMcpFeatureCollection); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListMockCommandQueryResultFactory() + public ValidateMcpFeatureCollectionCommandSubscriptionResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscriptionResult); - public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ValidateMcpFeatureCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ListMockCommandQueryResultInfo info) + if (dataInfo is ValidateMcpFeatureCollectionCommandSubscriptionResultInfo info) { - return new ListMockCommandQueryResult(MapIListMockCommandQuery_ApiById(info.ApiById)); + return new ValidateMcpFeatureCollectionCommandSubscriptionResult(MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate(info.OnMcpFeatureCollectionVersionValidationUpdate)); } - throw new global::System.ArgumentException("ListMockCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("ValidateMcpFeatureCollectionCommandSubscriptionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById? MapIListMockCommandQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData data) { - if (data is null) + IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationFailedData mcpFeatureCollectionVersionValidationFailed) { - return null; - } + if (!mcpFeatureCollectionVersionValidationFailed.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IListMockCommandQuery_ApiById returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new ListMockCommandQuery_ApiById_Api(MapIListMockCommandQuery_ApiById_MockSchemas(data.MockSchemas)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationFailed(mcpFeatureCollectionVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionValidationFailed.State!.Value, MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ErrorsNonNullableArray(mcpFeatureCollectionVersionValidationFailed.Errors)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationSuccessData mcpFeatureCollectionVersionValidationSuccess) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + if (!mcpFeatureCollectionVersionValidationSuccess.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas? MapIListMockCommandQuery_ApiById_MockSchemas(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? data) - { - if (data is null) - { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_McpFeatureCollectionVersionValidationSuccess(mcpFeatureCollectionVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionValidationSuccess.State!.Value); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + { + if (!operationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IListMockCommandQuery_ApiById_MockSchemas returnValue = default !; - if (data.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) { - returnValue = new ListMockCommandQuery_ApiById_MockSchemas_MockSchemasConnection(MapIListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(data.Edges), MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + if (!validationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); } else { @@ -180017,43 +180479,44 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var mockSchemasEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData child in list) + var mcpFeatureCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData child in list) { - mockSchemasEdges.Add(MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(child)); + mcpFeatureCollectionVersionValidationErrors.Add(MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors(child)); } - return mockSchemasEdges; + return mcpFeatureCollectionVersionValidationErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors MapNonNullableIValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData data) { - IListMockCommandQuery_ApiById_MockSchemas_Edges returnValue = default !; - if (data.__typename.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal)) + IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationArchiveErrorData mcpFeatureCollectionValidationArchiveError) { - returnValue = new ListMockCommandQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationArchiveError(mcpFeatureCollectionValidationArchiveError.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_Edges_Node MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData data) - { - IListMockCommandQuery_ApiById_MockSchemas_Edges_Node returnValue = default !; - if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - returnValue = new ListMockCommandQuery_ApiById_MockSchemas_Edges_Node_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_ReadyTimeoutError(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -180063,27 +180526,28 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + throw new global::System.ArgumentNullException(); } - else + + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - throw new global::System.NotSupportedException(); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return returnValue; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { - ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -180093,12 +180557,17 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListMockCommandQuery_ApiById_MockSchemas_PageInfo MapNonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { - IListMockCommandQuery_ApiById_MockSchemas_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new ListMockCommandQuery_ApiById_MockSchemas_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + return null; + } + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -180108,77 +180577,32 @@ public ListMockCommandQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ListMockCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) - { - ApiById = apiById; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ListMockCommandQueryResultInfo(ApiById); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public UpdateMockSchemaResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchemaResult); - - public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (dataInfo is UpdateMockSchemaResultInfo info) + if (list is null) { - return new UpdateMockSchemaResult(MapNonNullableIUpdateMockSchema_UpdateMockSchema(info.UpdateMockSchema)); + throw new global::System.ArgumentNullException(); } - throw new global::System.ArgumentException("UpdateMockSchemaResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema MapNonNullableIUpdateMockSchema_UpdateMockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData data) - { - IUpdateMockSchema_UpdateMockSchema returnValue = default !; - if (data.__typename.Equals("UpdateMockSchemaPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateMockSchema_UpdateMockSchema_UpdateMockSchemaPayload(MapIUpdateMockSchema_UpdateMockSchema_MockSchema(data.MockSchema), MapIUpdateMockSchema_UpdateMockSchema_ErrorsNonNullableArray(data.Errors)); - } - else + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - throw new global::System.NotSupportedException(); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } - return returnValue; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_MockSchema? MapIUpdateMockSchema_UpdateMockSchema_MockSchema(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); } - - IUpdateMockSchema_UpdateMockSchema_MockSchema returnValue = default !; - if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) { - returnValue = new UpdateMockSchema_UpdateMockSchema_MockSchema_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -180188,27 +180612,32 @@ public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + throw new global::System.ArgumentNullException(); } - else + + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - throw new global::System.NotSupportedException(); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } - return returnValue; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -180218,40 +180647,28 @@ public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUpdateMockSchema_UpdateMockSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var updateMockSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData child in list) + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) { - updateMockSchemaErrors.Add(MapNonNullableIUpdateMockSchema_UpdateMockSchema_Errors(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return updateMockSchemaErrors; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateMockSchema_UpdateMockSchema_Errors MapNonNullableIUpdateMockSchema_UpdateMockSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { - IUpdateMockSchema_UpdateMockSchema_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData mockSchemaNonUniqueNameError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNonUniqueNameError(mockSchemaNonUniqueNameError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Message ?? throw new global::System.ArgumentNullException(), mockSchemaNonUniqueNameError.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNotFoundErrorData mockSchemaNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_MockSchemaNotFoundError(mockSchemaNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), mockSchemaNotFoundError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_UnauthorizedOperation(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateMockSchema_UpdateMockSchema_Errors_ValidationError(); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -180269,49 +180686,49 @@ public UpdateMockSchemaResult Create(global::StrawberryShake.IOperationResultDat // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ValidateMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public UpdateMockSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData updateMockSchema) + public ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData onMcpFeatureCollectionVersionValidationUpdate) { - UpdateMockSchema = updateMockSchema; + OnMcpFeatureCollectionVersionValidationUpdate = onMcpFeatureCollectionVersionValidationUpdate; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData UpdateMockSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData OnMcpFeatureCollectionVersionValidationUpdate { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new UpdateMockSchemaResultInfo(UpdateMockSchema); + return new ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(OnMcpFeatureCollectionVersionValidationUpdate); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CreateOpenApiCollectionCommandMutationResultFactory() + public DeleteMcpFeatureCollectionByIdCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutationResult); - public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public DeleteMcpFeatureCollectionByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CreateOpenApiCollectionCommandMutationResultInfo info) + if (dataInfo is DeleteMcpFeatureCollectionByIdCommandMutationResultInfo info) { - return new CreateOpenApiCollectionCommandMutationResult(MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(info.CreateOpenApiCollection)); + return new DeleteMcpFeatureCollectionByIdCommandMutationResult(MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(info.DeleteMcpFeatureCollectionById)); } - throw new global::System.ArgumentException("CreateOpenApiCollectionCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("DeleteMcpFeatureCollectionByIdCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData data) { - ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection returnValue = default !; - if (data.__typename.Equals("CreateOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById returnValue = default !; + if (data.__typename.Equals("DeleteMcpFeatureCollectionByIdPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload(MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(data.OpenApiCollection), MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_DeleteMcpFeatureCollectionByIdPayload(MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(data.McpFeatureCollection), MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_ErrorsNonNullableArray(data.Errors)); } else { @@ -180321,17 +180738,17 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection? MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { if (data is null) { return null; } - ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -180341,32 +180758,32 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var createOpenApiCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData child in list) + var deleteMcpFeatureCollectionByIdErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData child in list) { - createOpenApiCollectionErrors.Add(MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors(child)); + deleteMcpFeatureCollectionByIdErrors.Add(MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors(child)); } - return createOpenApiCollectionErrors; + return deleteMcpFeatureCollectionByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors MapNonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData data) { - ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -180384,49 +180801,49 @@ public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberrySha // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class DeleteMcpFeatureCollectionByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData createOpenApiCollection) + public DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData deleteMcpFeatureCollectionById) { - CreateOpenApiCollection = createOpenApiCollection; + DeleteMcpFeatureCollectionById = deleteMcpFeatureCollectionById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData CreateOpenApiCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData DeleteMcpFeatureCollectionById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreateOpenApiCollectionCommandMutationResultInfo(CreateOpenApiCollection); + return new DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(DeleteMcpFeatureCollectionById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreateMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public DeleteOpenApiCollectionByIdCommandMutationResultFactory() + public CreateMcpFeatureCollectionCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutationResult); - public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CreateMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is DeleteOpenApiCollectionByIdCommandMutationResultInfo info) + if (dataInfo is CreateMcpFeatureCollectionCommandMutationResultInfo info) { - return new DeleteOpenApiCollectionByIdCommandMutationResult(MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(info.DeleteOpenApiCollectionById)); + return new CreateMcpFeatureCollectionCommandMutationResult(MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(info.CreateMcpFeatureCollection)); } - throw new global::System.ArgumentException("DeleteOpenApiCollectionByIdCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("CreateMcpFeatureCollectionCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData data) { - IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById returnValue = default !; - if (data.__typename.Equals("DeleteOpenApiCollectionByIdPayload", global::System.StringComparison.Ordinal)) + ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection returnValue = default !; + if (data.__typename.Equals("CreateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload(MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(data.OpenApiCollection), MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_ErrorsNonNullableArray(data.Errors)); + returnValue = new CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_CreateMcpFeatureCollectionPayload(MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(data.McpFeatureCollection), MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -180436,17 +180853,17 @@ public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::Strawberr return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection? MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { if (data is null) { return null; } - IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection_McpFeatureCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -180456,32 +180873,32 @@ public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var deleteOpenApiCollectionByIdErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData child in list) + var createMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData child in list) { - deleteOpenApiCollectionByIdErrors.Add(MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors(child)); + createMcpFeatureCollectionErrors.Add(MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors(child)); } - return deleteOpenApiCollectionByIdErrors; + return createMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors MapNonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData data) { - IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) + ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -180499,214 +180916,214 @@ public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::Strawberr // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class CreateMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public DeleteOpenApiCollectionByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData deleteOpenApiCollectionById) + public CreateMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData createMcpFeatureCollection) { - DeleteOpenApiCollectionById = deleteOpenApiCollectionById; + CreateMcpFeatureCollection = createMcpFeatureCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData DeleteOpenApiCollectionById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData CreateMcpFeatureCollection { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new DeleteOpenApiCollectionByIdCommandMutationResultInfo(DeleteOpenApiCollectionById); + return new CreateMcpFeatureCollectionCommandMutationResultInfo(CreateMcpFeatureCollection); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListMcpFeatureCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListOpenApiCollectionCommandQueryResultFactory() + public ListMcpFeatureCollectionCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQueryResult); - public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListMcpFeatureCollectionCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ListOpenApiCollectionCommandQueryResultInfo info) + if (dataInfo is ListMcpFeatureCollectionCommandQueryResultInfo info) { - return new ListOpenApiCollectionCommandQueryResult(MapIListOpenApiCollectionCommandQuery_Node(info.Node)); + return new ListMcpFeatureCollectionCommandQueryResult(MapIListMcpFeatureCollectionCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("ListOpenApiCollectionCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("ListMcpFeatureCollectionCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? MapIListOpenApiCollectionCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node? MapIListMcpFeatureCollectionCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { if (data is null) { return null; } - IListOpenApiCollectionCommandQuery_Node? returnValue; + IListMcpFeatureCollectionCommandQuery_Node? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Api(MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections(api.OpenApiCollections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Api(MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(api.McpFeatureCollections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ApiDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ApiDocument(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ApiKey(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ApiKey(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Client(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Client(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_ClientVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_CoordinateClientUsageMetrics(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Environment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Environment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_FusionConfigurationDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLDirectiveDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLEnumValueDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLObjectFieldDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLScalarTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_GraphQLUnionTypeDefinition(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Group(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Group(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollection(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollection(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OpenApiCollectionVersion(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Organization(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Organization(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OrganizationMember(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_OrganizationMember(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_SchemaChangeLog(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_SchemaDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_SchemaDeployment(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Stage(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Stage(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_User(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_User(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Workspace(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_Workspace(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListMcpFeatureCollectionCommandQuery_Node_WorkspaceDocument(); } else { @@ -180716,17 +181133,17 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections? MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? data) { if (data is null) { return null; } - IListOpenApiCollectionCommandQuery_Node_OpenApiCollections returnValue = default !; - if (data.__typename.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal)) + IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections returnValue = default !; + if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal)) { - returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection(MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(data.Edges), MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(data.Edges), MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -180736,28 +181153,28 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var apiOpenApiCollectionsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData child in list) + var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData child in list) { - apiOpenApiCollectionsEdges.Add(MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(child)); + apiMcpFeatureCollectionsEdges.Add(MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(child)); } - return apiOpenApiCollectionsEdges; + return apiMcpFeatureCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData data) { - IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges returnValue = default !; - if (data.__typename.Equals("ApiOpenApiCollectionsEdge", global::System.StringComparison.Ordinal)) + IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges returnValue = default !; + if (data.__typename.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal)) { - returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -180767,12 +181184,12 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData data) { - IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -180782,12 +181199,12 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo MapNonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo returnValue = default !; + IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo returnValue = default !; if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new ListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -180805,9 +181222,9 @@ public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IO // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListMcpFeatureCollectionCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListOpenApiCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + public ListMcpFeatureCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { Node = node; } @@ -180821,36 +181238,36 @@ public ListOpenApiCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.Com public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListOpenApiCollectionCommandQueryResultInfo(Node); + return new ListMcpFeatureCollectionCommandQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PublishMcpFeatureCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public PublishOpenApiCollectionCommandMutationResultFactory() + public PublishMcpFeatureCollectionCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutationResult); - public PublishOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PublishMcpFeatureCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is PublishOpenApiCollectionCommandMutationResultInfo info) + if (dataInfo is PublishMcpFeatureCollectionCommandMutationResultInfo info) { - return new PublishOpenApiCollectionCommandMutationResult(MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(info.PublishOpenApiCollection)); + return new PublishMcpFeatureCollectionCommandMutationResult(MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(info.PublishMcpFeatureCollection)); } - throw new global::System.ArgumentException("PublishOpenApiCollectionCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("PublishMcpFeatureCollectionCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData data) { - IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection returnValue = default !; - if (data.__typename.Equals("PublishOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection returnValue = default !; + if (data.__typename.Equals("PublishMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload(data.Id, MapIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_PublishMcpFeatureCollectionPayload(data.Id, MapIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -180860,40 +181277,44 @@ public PublishOpenApiCollectionCommandMutationResult Create(global::StrawberrySh return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var publishOpenApiCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData child in list) + var publishMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData child in list) { - publishOpenApiCollectionErrors.Add(MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors(child)); + publishMcpFeatureCollectionErrors.Add(MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors(child)); } - return publishOpenApiCollectionErrors; + return publishMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors MapNonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData data) { - IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors? returnValue; + IPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData mcpFeatureCollectionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionNotFoundError(mcpFeatureCollectionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionNotFoundErrorData openApiCollectionVersionNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionNotFoundErrorData mcpFeatureCollectionVersionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError(openApiCollectionVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_McpFeatureCollectionVersionNotFoundError(mcpFeatureCollectionVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionNotFoundError.McpFeatureCollectionId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -180911,63 +181332,63 @@ public PublishOpenApiCollectionCommandMutationResult Create(global::StrawberrySh // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PublishMcpFeatureCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PublishOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData publishOpenApiCollection) + public PublishMcpFeatureCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData publishMcpFeatureCollection) { - PublishOpenApiCollection = publishOpenApiCollection; + PublishMcpFeatureCollection = publishMcpFeatureCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData PublishOpenApiCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData PublishMcpFeatureCollection { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PublishOpenApiCollectionCommandMutationResultInfo(PublishOpenApiCollection); + return new PublishMcpFeatureCollectionCommandMutationResultInfo(PublishMcpFeatureCollection); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PublishMcpFeatureCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public PublishOpenApiCollectionCommandSubscriptionResultFactory() + public PublishMcpFeatureCollectionCommandSubscriptionResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscriptionResult); - public PublishOpenApiCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PublishMcpFeatureCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is PublishOpenApiCollectionCommandSubscriptionResultInfo info) + if (dataInfo is PublishMcpFeatureCollectionCommandSubscriptionResultInfo info) { - return new PublishOpenApiCollectionCommandSubscriptionResult(MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate(info.OnOpenApiCollectionVersionPublishingUpdate)); + return new PublishMcpFeatureCollectionCommandSubscriptionResult(MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate(info.OnMcpFeatureCollectionVersionPublishingUpdate)); } - throw new global::System.ArgumentException("PublishOpenApiCollectionCommandSubscriptionResultInfo expected."); + throw new global::System.ArgumentException("PublishMcpFeatureCollectionCommandSubscriptionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData data) { - IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishFailedData openApiCollectionVersionPublishFailed) + IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishFailedData mcpFeatureCollectionVersionPublishFailed) { - if (!openApiCollectionVersionPublishFailed.State.HasValue) + if (!mcpFeatureCollectionVersionPublishFailed.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed(openApiCollectionVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionPublishFailed.State!.Value, MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ErrorsNonNullableArray(openApiCollectionVersionPublishFailed.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishFailed(mcpFeatureCollectionVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionPublishFailed.State!.Value, MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ErrorsNonNullableArray(mcpFeatureCollectionVersionPublishFailed.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishSuccessData openApiCollectionVersionPublishSuccess) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishSuccessData mcpFeatureCollectionVersionPublishSuccess) { - if (!openApiCollectionVersionPublishSuccess.State.HasValue) + if (!mcpFeatureCollectionVersionPublishSuccess.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess(openApiCollectionVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionPublishSuccess.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_McpFeatureCollectionVersionPublishSuccess(mcpFeatureCollectionVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionVersionPublishSuccess.State!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { @@ -180976,7 +181397,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) { @@ -180985,7 +181406,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) { @@ -180994,11 +181415,11 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) { @@ -181007,7 +181428,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); } else { @@ -181017,44 +181438,44 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData child in list) + var mcpFeatureCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData child in list) { - openApiCollectionVersionPublishErrors.Add(MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors(child)); + mcpFeatureCollectionVersionPublishErrors.Add(MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors(child)); } - return openApiCollectionVersionPublishErrors; + return mcpFeatureCollectionVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors MapNonNullableIPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData data) { - IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors? returnValue; + IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -181064,28 +181485,28 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return openApiCollectionValidationCollections; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -181095,17 +181516,17 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -181115,32 +181536,32 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } - return openApiCollectionValidationEntitys; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -181150,32 +181571,32 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } - return openApiCollectionValidationEntityErrors; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -181185,28 +181606,28 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return openApiCollectionValidationDocumentErrorLocations; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -181273,7 +181694,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else { @@ -181283,17 +181704,157 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + { + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); + } + + return persistedQueryValidationFaileds; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; + if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + { + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); + } + + return persistedQueryErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; + if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) + { + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); + } + + return persistedQueryErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; + if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) + { + fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); + } + + return fusionConfigurationDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -181303,28 +181864,28 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } - return persistedQueryValidationFaileds; + return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; - if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -181334,28 +181895,17 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + if (data is null) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + return null; } - return persistedQueryErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; - if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -181365,28 +181915,32 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); } - return persistedQueryErrorLocations; + return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; - if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -181396,44 +181950,63 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } - return fusionConfigurationDeploymentErrors; + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + { + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + } + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -182312,158 +182885,6 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) - { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); - } - - return mcpFeatureCollectionValidationCollections; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) - { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) - { - if (data is null) - { - return null; - } - - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) - { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) - { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); - } - - return mcpFeatureCollectionValidationEntitys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) - { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); - } - - return mcpFeatureCollectionValidationEntityErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } - - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) - { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); - } - - return mcpFeatureCollectionValidationDocumentErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) - { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) @@ -182485,7 +182906,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else { @@ -182516,7 +182937,7 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else { @@ -182547,7 +182968,15 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) { @@ -182580,14 +183009,6 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber { returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); - } else { throw new global::System.NotSupportedException(); @@ -182604,49 +183025,54 @@ public PublishOpenApiCollectionCommandSubscriptionResult Create(global::Strawber // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PublishMcpFeatureCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PublishOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData onOpenApiCollectionVersionPublishingUpdate) + public PublishMcpFeatureCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData onMcpFeatureCollectionVersionPublishingUpdate) { - OnOpenApiCollectionVersionPublishingUpdate = onOpenApiCollectionVersionPublishingUpdate; + OnMcpFeatureCollectionVersionPublishingUpdate = onMcpFeatureCollectionVersionPublishingUpdate; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData OnOpenApiCollectionVersionPublishingUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData OnMcpFeatureCollectionVersionPublishingUpdate { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PublishOpenApiCollectionCommandSubscriptionResultInfo(OnOpenApiCollectionVersionPublishingUpdate); + return new PublishMcpFeatureCollectionCommandSubscriptionResultInfo(OnMcpFeatureCollectionVersionPublishingUpdate); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListPersonalAccessTokenCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public UploadOpenApiCollectionCommandMutationResultFactory() + public ListPersonalAccessTokenCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryResult); - public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is UploadOpenApiCollectionCommandMutationResultInfo info) + if (dataInfo is ListPersonalAccessTokenCommandQueryResultInfo info) { - return new UploadOpenApiCollectionCommandMutationResult(MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(info.UploadOpenApiCollection)); + return new ListPersonalAccessTokenCommandQueryResult(MapIListPersonalAccessTokenCommandQuery_Me(info.Me)); } - throw new global::System.ArgumentException("UploadOpenApiCollectionCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("ListPersonalAccessTokenCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? MapIListPersonalAccessTokenCommandQuery_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) { - IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection returnValue = default !; - if (data.__typename.Equals("UploadOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload(MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(data.OpenApiCollectionVersion), MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_ErrorsNonNullableArray(data.Errors)); + return null; + } + + IListPersonalAccessTokenCommandQuery_Me returnValue = default !; + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) + { + returnValue = new ListPersonalAccessTokenCommandQuery_Me_Viewer(MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(data.PersonalAccessTokens)); } else { @@ -182656,17 +183082,17 @@ public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberrySha return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? data) { if (data is null) { return null; } - IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal)) + IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens returnValue = default !; + if (data.__typename.Equals("PersonalAccessTokensConnection", global::System.StringComparison.Ordinal)) { - returnValue = new UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection(MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(data.Edges), MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -182676,44 +183102,28 @@ public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberrySha return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var uploadOpenApiCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData child in list) + var personalAccessTokensEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData child in list) { - uploadOpenApiCollectionErrors.Add(MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors(child)); + personalAccessTokensEdges.Add(MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(child)); } - return uploadOpenApiCollectionErrors; + return personalAccessTokensEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData data) { - IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidOpenApiCollectionArchiveErrorData invalidOpenApiCollectionArchiveError) + IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges returnValue = default !; + if (data.__typename.Equals("PersonalAccessTokensEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError(invalidOpenApiCollectionArchiveError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -182723,57 +183133,12 @@ public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberrySha return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public UploadOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData uploadOpenApiCollection) - { - UploadOpenApiCollection = uploadOpenApiCollection; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData UploadOpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new UploadOpenApiCollectionCommandMutationResultInfo(UploadOpenApiCollection); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ValidateOpenApiCollectionCommandMutationResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationResult); - - public ValidateOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ValidateOpenApiCollectionCommandMutationResultInfo info) - { - return new ValidateOpenApiCollectionCommandMutationResult(MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(info.ValidateOpenApiCollection)); - } - - throw new global::System.ArgumentException("ValidateOpenApiCollectionCommandMutationResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData data) { - IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection returnValue = default !; - if (data.__typename.Equals("ValidateOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node returnValue = default !; + if (data.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal)) { - returnValue = new ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload(data.Id, MapIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ErrorsNonNullableArray(data.Errors)); + returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException()); } else { @@ -182783,36 +183148,12 @@ public ValidateOpenApiCollectionCommandMutationResult Create(global::StrawberryS return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } - - var validateOpenApiCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData child in list) - { - validateOpenApiCollectionErrors.Add(MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors(child)); - } - - return validateOpenApiCollectionErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -182830,159 +183171,49 @@ public ValidateOpenApiCollectionCommandMutationResult Create(global::StrawberryS // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListPersonalAccessTokenCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData validateOpenApiCollection) + public ListPersonalAccessTokenCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) { - ValidateOpenApiCollection = validateOpenApiCollection; + Me = me; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData ValidateOpenApiCollection { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateOpenApiCollectionCommandMutationResultInfo(ValidateOpenApiCollection); + return new ListPersonalAccessTokenCommandQueryResultInfo(Me); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CreatePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ValidateOpenApiCollectionCommandSubscriptionResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionResult); - - public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ValidateOpenApiCollectionCommandSubscriptionResultInfo info) - { - return new ValidateOpenApiCollectionCommandSubscriptionResult(MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate(info.OnOpenApiCollectionVersionValidationUpdate)); - } - - throw new global::System.ArgumentException("ValidateOpenApiCollectionCommandSubscriptionResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData data) - { - IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationFailedData openApiCollectionVersionValidationFailed) - { - if (!openApiCollectionVersionValidationFailed.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed(openApiCollectionVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionValidationFailed.State!.Value, MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ErrorsNonNullableArray(openApiCollectionVersionValidationFailed.Errors)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationSuccessData openApiCollectionVersionValidationSuccess) - { - if (!openApiCollectionVersionValidationSuccess.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess(openApiCollectionVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionValidationSuccess.State!.Value); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) - { - if (!operationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) - { - if (!validationInProgress.State.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + public CreatePersonalAccessTokenCommandMutationResultFactory() { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var openApiCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData child in list) - { - openApiCollectionVersionValidationErrors.Add(MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors(child)); - } - - return openApiCollectionVersionValidationErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData data) - { - IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationArchiveErrorData openApiCollectionValidationArchiveError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError(openApiCollectionValidationArchiveError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationResult); - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + if (dataInfo is CreatePersonalAccessTokenCommandMutationResultInfo info) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + return new CreatePersonalAccessTokenCommandMutationResult(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(info.CreatePersonalAccessToken)); } - return openApiCollectionValidationCollections; + throw new global::System.ArgumentException("CreatePersonalAccessTokenCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken returnValue = default !; + if (data.__typename.Equals("CreatePersonalAccessTokenPayload", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload(MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(data.Result), MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_ErrorsNonNullableArray(data.Errors)); } else { @@ -182992,17 +183223,17 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result returnValue = default !; + if (data.__typename.Equals("PersonalAccessTokenWithSecret", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(data.Token ?? throw new global::System.ArgumentNullException()), data.Secret ?? throw new global::System.ArgumentNullException()); } else { @@ -183012,32 +183243,12 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) - { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); - } - - return openApiCollectionValidationEntitys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token returnValue = default !; + if (data.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException()); } else { @@ -183047,63 +183258,32 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); - } - - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) - { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + return null; } - return openApiCollectionValidationEntityErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); - } - else + var createPersonalAccessTokenErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData child in list) { - throw new global::System.NotSupportedException(); + createPersonalAccessTokenErrors.Add(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors(child)); } - return returnValue; + return createPersonalAccessTokenErrors; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData data) { - if (list is null) - { - return null; - } - - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError(validationError.Message ?? throw new global::System.ArgumentNullException()); } - - return openApiCollectionValidationDocumentErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -183121,49 +183301,49 @@ public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::Strawbe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class CreatePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData onOpenApiCollectionVersionValidationUpdate) + public CreatePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData createPersonalAccessToken) { - OnOpenApiCollectionVersionValidationUpdate = onOpenApiCollectionVersionValidationUpdate; + CreatePersonalAccessToken = createPersonalAccessToken; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData OnOpenApiCollectionVersionValidationUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData CreatePersonalAccessToken { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateOpenApiCollectionCommandSubscriptionResultInfo(OnOpenApiCollectionVersionValidationUpdate); + return new CreatePersonalAccessTokenCommandMutationResultInfo(CreatePersonalAccessToken); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class RevokePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CreatePersonalAccessTokenCommandMutationResultFactory() + public RevokePersonalAccessTokenCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationResult); - public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CreatePersonalAccessTokenCommandMutationResultInfo info) + if (dataInfo is RevokePersonalAccessTokenCommandMutationResultInfo info) { - return new CreatePersonalAccessTokenCommandMutationResult(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(info.CreatePersonalAccessToken)); + return new RevokePersonalAccessTokenCommandMutationResult(MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(info.RevokePersonalAccessToken)); } - throw new global::System.ArgumentException("CreatePersonalAccessTokenCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("RevokePersonalAccessTokenCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData data) { - ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken returnValue = default !; - if (data.__typename.Equals("CreatePersonalAccessTokenPayload", global::System.StringComparison.Ordinal)) + IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken returnValue = default !; + if (data.__typename.Equals("RevokePersonalAccessTokenPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_CreatePersonalAccessTokenPayload(MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(data.Result), MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_ErrorsNonNullableArray(data.Errors)); + returnValue = new RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload(MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(data.PersonalAccessToken), MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_ErrorsNonNullableArray(data.Errors)); } else { @@ -183173,32 +183353,17 @@ public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryS return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result? MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? data) { if (data is null) { return null; } - ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result returnValue = default !; - if (data.__typename.Equals("PersonalAccessTokenWithSecret", global::System.StringComparison.Ordinal)) - { - returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_PersonalAccessTokenWithSecret(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(data.Token ?? throw new global::System.ArgumentNullException()), data.Secret ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData data) - { - ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token returnValue = default !; + IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken returnValue = default !; if (data.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal)) { - returnValue = new CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException()); + returnValue = new RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException()); } else { @@ -183208,32 +183373,32 @@ public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryS return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var createPersonalAccessTokenErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData child in list) + var revokePersonalAccessTokenErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData child in list) { - createPersonalAccessTokenErrors.Add(MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors(child)); + revokePersonalAccessTokenErrors.Add(MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors(child)); } - return createPersonalAccessTokenErrors; + return revokePersonalAccessTokenErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors MapNonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData data) { - ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) + IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_ValidationError(validationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenNotFoundErrorData personalAccessTokenNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError(personalAccessTokenNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), personalAccessTokenNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -183251,54 +183416,49 @@ public CreatePersonalAccessTokenCommandMutationResult Create(global::StrawberryS // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class RevokePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreatePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData createPersonalAccessToken) + public RevokePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData revokePersonalAccessToken) { - CreatePersonalAccessToken = createPersonalAccessToken; + RevokePersonalAccessToken = revokePersonalAccessToken; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData CreatePersonalAccessToken { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData RevokePersonalAccessToken { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreatePersonalAccessTokenCommandMutationResultInfo(CreatePersonalAccessToken); + return new RevokePersonalAccessTokenCommandMutationResultInfo(RevokePersonalAccessToken); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class UploadOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListPersonalAccessTokenCommandQueryResultFactory() + public UploadOpenApiCollectionCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutationResult); - public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public UploadOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ListPersonalAccessTokenCommandQueryResultInfo info) + if (dataInfo is UploadOpenApiCollectionCommandMutationResultInfo info) { - return new ListPersonalAccessTokenCommandQueryResult(MapIListPersonalAccessTokenCommandQuery_Me(info.Me)); + return new UploadOpenApiCollectionCommandMutationResult(MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(info.UploadOpenApiCollection)); } - throw new global::System.ArgumentException("ListPersonalAccessTokenCommandQueryResultInfo expected."); + throw new global::System.ArgumentException("UploadOpenApiCollectionCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me? MapIListPersonalAccessTokenCommandQuery_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData data) { - if (data is null) - { - return null; - } - - IListPersonalAccessTokenCommandQuery_Me returnValue = default !; - if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) + IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection returnValue = default !; + if (data.__typename.Equals("UploadOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new ListPersonalAccessTokenCommandQuery_Me_Viewer(MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(data.PersonalAccessTokens)); + returnValue = new UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_UploadOpenApiCollectionPayload(MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(data.OpenApiCollectionVersion), MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -183308,17 +183468,17 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens? MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion? MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? data) { if (data is null) { return null; } - IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens returnValue = default !; - if (data.__typename.Equals("PersonalAccessTokensConnection", global::System.StringComparison.Ordinal)) + IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal)) { - returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PersonalAccessTokensConnection(MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(data.Edges), MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion_OpenApiCollectionVersion(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -183328,58 +183488,48 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var personalAccessTokensEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData child in list) + var uploadOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData child in list) { - personalAccessTokensEdges.Add(MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(child)); + uploadOpenApiCollectionErrors.Add(MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors(child)); } - return personalAccessTokensEdges; + return uploadOpenApiCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors MapNonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData data) { - IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges returnValue = default !; - if (data.__typename.Equals("PersonalAccessTokensEdge", global::System.StringComparison.Ordinal)) + IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) { - returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_PersonalAccessTokensEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData data) - { - IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node returnValue = default !; - if (data.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo MapNonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidOpenApiCollectionArchiveErrorData invalidOpenApiCollectionArchiveError) { - returnValue = new ListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidOpenApiCollectionArchiveError(invalidOpenApiCollectionArchiveError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -183397,49 +183547,214 @@ public ListPersonalAccessTokenCommandQueryResult Create(global::StrawberryShake. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class UploadOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListPersonalAccessTokenCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) + public UploadOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData uploadOpenApiCollection) { - Me = me; + UploadOpenApiCollection = uploadOpenApiCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData UploadOpenApiCollection { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListPersonalAccessTokenCommandQueryResultInfo(Me); + return new UploadOpenApiCollectionCommandMutationResultInfo(UploadOpenApiCollection); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ListOpenApiCollectionCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public RevokePersonalAccessTokenCommandMutationResultFactory() + public ListOpenApiCollectionCommandQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQueryResult); - public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ListOpenApiCollectionCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is RevokePersonalAccessTokenCommandMutationResultInfo info) + if (dataInfo is ListOpenApiCollectionCommandQueryResultInfo info) { - return new RevokePersonalAccessTokenCommandMutationResult(MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(info.RevokePersonalAccessToken)); + return new ListOpenApiCollectionCommandQueryResult(MapIListOpenApiCollectionCommandQuery_Node(info.Node)); } - throw new global::System.ArgumentException("RevokePersonalAccessTokenCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("ListOpenApiCollectionCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node? MapIListOpenApiCollectionCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken returnValue = default !; - if (data.__typename.Equals("RevokePersonalAccessTokenPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_RevokePersonalAccessTokenPayload(MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(data.PersonalAccessToken), MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_ErrorsNonNullableArray(data.Errors)); + return null; + } + + IListOpenApiCollectionCommandQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Api(MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections(api.OpenApiCollections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ApiDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ApiKey(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Client(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_ClientVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_CoordinateClientUsageMetrics(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Environment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_FusionConfigurationChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_FusionConfigurationDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLDirectiveDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLEnumTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLEnumValueDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_SchemaDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Stage(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_User(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_Workspace(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListOpenApiCollectionCommandQuery_Node_WorkspaceDocument(); } else { @@ -183449,17 +183764,17 @@ public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryS return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken? MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections? MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? data) { if (data is null) { return null; } - IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken returnValue = default !; - if (data.__typename.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal)) + IListOpenApiCollectionCommandQuery_Node_OpenApiCollections returnValue = default !; + if (data.__typename.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal)) { - returnValue = new RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken_PersonalAccessToken(data.Id ?? throw new global::System.ArgumentNullException(), data.Description ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.ExpiresAt ?? throw new global::System.ArgumentNullException()); + returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_ApiOpenApiCollectionsConnection(MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(data.Edges), MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -183469,32 +183784,58 @@ public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryS return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var revokePersonalAccessTokenErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData child in list) + var apiOpenApiCollectionsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData child in list) { - revokePersonalAccessTokenErrors.Add(MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors(child)); + apiOpenApiCollectionsEdges.Add(MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(child)); } - return revokePersonalAccessTokenErrors; + return apiOpenApiCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors MapNonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData data) { - IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges returnValue = default !; + if (data.__typename.Equals("ApiOpenApiCollectionsEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_ApiOpenApiCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenNotFoundErrorData personalAccessTokenNotFoundError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.RevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_Errors_PersonalAccessTokenNotFoundError(personalAccessTokenNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), personalAccessTokenNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData data) + { + IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo MapNonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -183512,49 +183853,52 @@ public RevokePersonalAccessTokenCommandMutationResult Create(global::StrawberryS // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListOpenApiCollectionCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public RevokePersonalAccessTokenCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData revokePersonalAccessToken) + public ListOpenApiCollectionCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { - RevokePersonalAccessToken = revokePersonalAccessToken; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData RevokePersonalAccessToken { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new RevokePersonalAccessTokenCommandMutationResultInfo(RevokePersonalAccessToken); + return new ListOpenApiCollectionCommandQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PublishOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public PublishSchemaVersionResultFactory() + public PublishOpenApiCollectionCommandMutationResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutationResult); - public PublishSchemaVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PublishOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is PublishSchemaVersionResultInfo info) + if (dataInfo is PublishOpenApiCollectionCommandMutationResultInfo info) { - return new PublishSchemaVersionResult(MapNonNullableIPublishSchemaVersion_PublishSchema(info.PublishSchema)); + return new PublishOpenApiCollectionCommandMutationResult(MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(info.PublishOpenApiCollection)); } - throw new global::System.ArgumentException("PublishSchemaVersionResultInfo expected."); + throw new global::System.ArgumentException("PublishOpenApiCollectionCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema MapNonNullableIPublishSchemaVersion_PublishSchema(global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData data) { - IPublishSchemaVersion_PublishSchema returnValue = default !; - if (data.__typename.Equals("PublishSchemaPayload", global::System.StringComparison.Ordinal)) + IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection returnValue = default !; + if (data.__typename.Equals("PublishOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new PublishSchemaVersion_PublishSchema_PublishSchemaPayload(data.Id, MapIPublishSchemaVersion_PublishSchema_ErrorsNonNullableArray(data.Errors)); + returnValue = new PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_PublishOpenApiCollectionPayload(data.Id, MapIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -183564,40 +183908,44 @@ public PublishSchemaVersionResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIPublishSchemaVersion_PublishSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var publishSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData child in list) + var publishOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData child in list) { - publishSchemaErrors.Add(MapNonNullableIPublishSchemaVersion_PublishSchema_Errors(child)); + publishOpenApiCollectionErrors.Add(MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors(child)); } - return publishSchemaErrors; + return publishOpenApiCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema_Errors MapNonNullableIPublishSchemaVersion_PublishSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors MapNonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData data) { - IPublishSchemaVersion_PublishSchema_Errors? returnValue; + IPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData schemaNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(schemaNotFoundError.Message ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.ApiId ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.Tag ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionNotFoundErrorData openApiCollectionVersionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_OpenApiCollectionVersionNotFoundError(openApiCollectionVersionNotFoundError.Tag ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandMutation_PublishOpenApiCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -183615,94 +183963,94 @@ public PublishSchemaVersionResult Create(global::StrawberryShake.IOperationResul // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PublishOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PublishSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData publishSchema) + public PublishOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData publishOpenApiCollection) { - PublishSchema = publishSchema; + PublishOpenApiCollection = publishOpenApiCollection; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData PublishSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData PublishOpenApiCollection { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PublishSchemaVersionResultInfo(PublishSchema); + return new PublishOpenApiCollectionCommandMutationResultInfo(PublishOpenApiCollection); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PublishOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public OnSchemaVersionPublishUpdatedResultFactory() + public PublishOpenApiCollectionCommandSubscriptionResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscriptionResult); - public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PublishOpenApiCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is OnSchemaVersionPublishUpdatedResultInfo info) + if (dataInfo is PublishOpenApiCollectionCommandSubscriptionResultInfo info) { - return new OnSchemaVersionPublishUpdatedResult(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate(info.OnSchemaVersionPublishingUpdate)); + return new PublishOpenApiCollectionCommandSubscriptionResult(MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate(info.OnOpenApiCollectionVersionPublishingUpdate)); } - throw new global::System.ArgumentException("OnSchemaVersionPublishUpdatedResultInfo expected."); + throw new global::System.ArgumentException("PublishOpenApiCollectionCommandSubscriptionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData data) { - IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishFailedData openApiCollectionVersionPublishFailed) { - if (!operationInProgress.State.HasValue) + if (!openApiCollectionVersionPublishFailed.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishFailed(openApiCollectionVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionPublishFailed.State!.Value, MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ErrorsNonNullableArray(openApiCollectionVersionPublishFailed.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishSuccessData openApiCollectionVersionPublishSuccess) { - if (!processingTaskApproved.State.HasValue) + if (!openApiCollectionVersionPublishSuccess.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OpenApiCollectionVersionPublishSuccess(openApiCollectionVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionPublishSuccess.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { - if (!processingTaskIsQueued.QueuePosition.HasValue) + if (!operationInProgress.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishFailedData schemaVersionPublishFailed) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) { - if (!schemaVersionPublishFailed.State.HasValue) + if (!processingTaskApproved.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed(schemaVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionPublishFailed.State!.Value, MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ErrorsNonNullableArray(schemaVersionPublishFailed.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishSuccessData schemaVersionPublishSuccess) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) { - if (!schemaVersionPublishSuccess.State.HasValue) + if (!processingTaskIsQueued.QueuePosition.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess(schemaVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionPublishSuccess.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) { @@ -183711,7 +184059,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); } else { @@ -183721,83 +184069,95 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var schemaVersionPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData child in list) + var openApiCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData child in list) { - schemaVersionPublishErrors.Add(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors(child)); + openApiCollectionVersionPublishErrors.Add(MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors(child)); } - return schemaVersionPublishErrors; + return openApiCollectionVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors MapNonNullableIPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData data) { - IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors? returnValue; + IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_ReadyTimeoutError(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError(); + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData schemaVersionChangeViolationError) + + return openApiCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError(schemaVersionChangeViolationError.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(schemaVersionChangeViolationError.Changes)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + else { - if (!schemaVersionSyntaxError.Column.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (!schemaVersionSyntaxError.Position.HasValue) - { - throw new global::System.ArgumentNullException(); - } + throw new global::System.NotSupportedException(); + } - if (!schemaVersionSyntaxError.Line.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return returnValue; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + { + if (data is null) + { + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -183807,28 +184167,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var graphQLSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); } - return graphQLSchemaErrors; + return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; - if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -183838,28 +184202,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } - return mcpFeatureCollectionValidationCollections; + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -183869,17 +184237,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + } + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -183889,32 +184268,33 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); } - - return mcpFeatureCollectionValidationEntitys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); } else { @@ -183924,32 +184304,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); + clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return clientDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else { @@ -183959,28 +184335,17 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { - if (list is null) + if (data is null) { return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) - { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); - } - - return mcpFeatureCollectionValidationDocumentErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) - { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; - if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -183990,28 +184355,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - return openApiCollectionValidationCollections; + return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; + if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } else { @@ -184021,17 +184386,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; - if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); + } + + return persistedQueryErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; + if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } else { @@ -184041,32 +184417,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - return openApiCollectionValidationEntitys; + return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; + if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -184076,32 +184448,44 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); } - return openApiCollectionValidationEntityErrors; + return fusionConfigurationDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -184111,28 +184495,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return openApiCollectionValidationDocumentErrorLocations; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; - if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -184142,17 +184526,17 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -184162,28 +184546,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } - return persistedQueryValidationFaileds; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; - if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -184193,28 +184581,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } - return persistedQueryErrors; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; - if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -184224,28 +184616,28 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return persistedQueryErrorLocations; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; - if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -184255,25 +184647,25 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) { - schemaChangeLogEntrys.Add(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes(child)); + schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); } return schemaChangeLogEntrys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) { - IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) { if (!directiveModifiedChange.Severity.HasValue) @@ -184281,7 +184673,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) { @@ -184290,7 +184682,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) { @@ -184299,7 +184691,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) { @@ -184308,7 +184700,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) { @@ -184317,7 +184709,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) { @@ -184326,7 +184718,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) { @@ -184335,7 +184727,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) { @@ -184344,7 +184736,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) { @@ -184353,7 +184745,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) { @@ -184362,7 +184754,7 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); } else { @@ -184988,12 +185380,593 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) { - if (!outputFieldChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + if (!outputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var scalarChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) + { + scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + } + + return scalarChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) + { + unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); + } + + return unionChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) + { + if (!unionMemberAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) + { + if (!unionMemberRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var graphQLSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) + { + graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + } + + return graphQLSchemaErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; + if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) + { + mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + } + + return mcpFeatureCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) + { + openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + } + + return openApiCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) + { + schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); + } + + return schemaDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + { + if (!schemaVersionSyntaxError.Column.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Position.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Line.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + { + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PublishOpenApiCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public PublishOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData onOpenApiCollectionVersionPublishingUpdate) + { + OnOpenApiCollectionVersionPublishingUpdate = onOpenApiCollectionVersionPublishingUpdate; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData OnOpenApiCollectionVersionPublishingUpdate { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new PublishOpenApiCollectionCommandSubscriptionResultInfo(OnOpenApiCollectionVersionPublishingUpdate); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ValidateOpenApiCollectionCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutationResult); + + public ValidateOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ValidateOpenApiCollectionCommandMutationResultInfo info) + { + return new ValidateOpenApiCollectionCommandMutationResult(MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(info.ValidateOpenApiCollection)); + } + + throw new global::System.ArgumentException("ValidateOpenApiCollectionCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData data) + { + IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection returnValue = default !; + if (data.__typename.Equals("ValidateOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + { + returnValue = new ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ValidateOpenApiCollectionPayload(data.Id, MapIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ErrorsNonNullableArray(data.Errors)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var validateOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData child in list) + { + validateOpenApiCollectionErrors.Add(MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors(child)); + } + + return validateOpenApiCollectionErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors MapNonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData data) + { + IValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + { + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ValidateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData validateOpenApiCollection) + { + ValidateOpenApiCollection = validateOpenApiCollection; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData ValidateOpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ValidateOpenApiCollectionCommandMutationResultInfo(ValidateOpenApiCollection); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandSubscriptionResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ValidateOpenApiCollectionCommandSubscriptionResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscriptionResult); + + public ValidateOpenApiCollectionCommandSubscriptionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ValidateOpenApiCollectionCommandSubscriptionResultInfo info) + { + return new ValidateOpenApiCollectionCommandSubscriptionResult(MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate(info.OnOpenApiCollectionVersionValidationUpdate)); + } + + throw new global::System.ArgumentException("ValidateOpenApiCollectionCommandSubscriptionResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData data) + { + IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationFailedData openApiCollectionVersionValidationFailed) + { + if (!openApiCollectionVersionValidationFailed.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationFailed(openApiCollectionVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionValidationFailed.State!.Value, MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ErrorsNonNullableArray(openApiCollectionVersionValidationFailed.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationSuccessData openApiCollectionVersionValidationSuccess) + { + if (!openApiCollectionVersionValidationSuccess.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OpenApiCollectionVersionValidationSuccess(openApiCollectionVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), openApiCollectionVersionValidationSuccess.State!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) + { + if (!operationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + { + if (!validationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData child in list) + { + openApiCollectionVersionValidationErrors.Add(MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors(child)); + } + + return openApiCollectionVersionValidationErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors MapNonNullableIValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData data) + { + IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationArchiveErrorData openApiCollectionValidationArchiveError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationArchiveError(openApiCollectionValidationArchiveError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_ReadyTimeoutError(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + { + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } + + return openApiCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) + { + if (data is null) + { + return null; + } + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) + { + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + } + + return openApiCollectionValidationEntitys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -185003,33 +185976,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } - return scalarChanges; + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -185039,51 +186011,88 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } - return unionChanges; + return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - if (!descriptionChanged.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) + else { - if (!unionMemberAdded.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) + + return returnValue; + } + + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + { + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandSubscriptionResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ValidateOpenApiCollectionCommandSubscriptionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData onOpenApiCollectionVersionValidationUpdate) + { + OnOpenApiCollectionVersionValidationUpdate = onOpenApiCollectionVersionValidationUpdate; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData OnOpenApiCollectionVersionValidationUpdate { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ValidateOpenApiCollectionCommandSubscriptionResultInfo(OnOpenApiCollectionVersionValidationUpdate); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateOpenApiCollectionCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public CreateOpenApiCollectionCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutationResult); + + public CreateOpenApiCollectionCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is CreateOpenApiCollectionCommandMutationResultInfo info) { - if (!unionMemberRemoved.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return new CreateOpenApiCollectionCommandMutationResult(MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(info.CreateOpenApiCollection)); + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + throw new global::System.ArgumentException("CreateOpenApiCollectionCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData data) + { + ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection returnValue = default !; + if (data.__typename.Equals("CreateOpenApiCollectionPayload", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_CreateOpenApiCollectionPayload(MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(data.OpenApiCollection), MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_ErrorsNonNullableArray(data.Errors)); } else { @@ -185093,33 +186102,52 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection? MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); + returnValue = new CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + + var createOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); + createOpenApiCollectionErrors.Add(MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + + return createOpenApiCollectionErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors MapNonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData data) + { + ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_ApiNotFoundError(apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -185129,28 +186157,57 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateOpenApiCollectionCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CreateOpenApiCollectionCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData createOpenApiCollection) + { + CreateOpenApiCollection = createOpenApiCollection; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData CreateOpenApiCollection { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CreateOpenApiCollectionCommandMutationResultInfo(CreateOpenApiCollection); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteOpenApiCollectionByIdCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public DeleteOpenApiCollectionByIdCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutationResult); + + public DeleteOpenApiCollectionByIdCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is DeleteOpenApiCollectionByIdCommandMutationResultInfo info) { - clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + return new DeleteOpenApiCollectionByIdCommandMutationResult(MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(info.DeleteOpenApiCollectionById)); } - return clientDeploymentErrors; + throw new global::System.ArgumentException("DeleteOpenApiCollectionByIdCommandMutationResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById returnValue = default !; + if (data.__typename.Equals("DeleteOpenApiCollectionByIdPayload", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_DeleteOpenApiCollectionByIdPayload(MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(data.OpenApiCollection), MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_ErrorsNonNullableArray(data.Errors)); } else { @@ -185160,44 +186217,52 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection? MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) { - if (list is null) + if (data is null) { - throw new global::System.ArgumentNullException(); + return null; } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) + IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); + returnValue = new DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection_OpenApiCollection(data.Name ?? throw new global::System.ArgumentNullException(), data.Id ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); } - return fusionConfigurationDeploymentErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) + private global::System.Collections.Generic.IReadOnlyList? MapIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + + var deleteOpenApiCollectionByIdErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + deleteOpenApiCollectionByIdErrors.Add(MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + + return deleteOpenApiCollectionByIdErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors MapNonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData data) + { + IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData openApiCollectionNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_OpenApiCollectionNotFoundError(openApiCollectionNotFoundError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionNotFoundError.OpenApiCollectionId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.DeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -185207,114 +186272,227 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteOpenApiCollectionByIdCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public DeleteOpenApiCollectionByIdCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData deleteOpenApiCollectionById) + { + DeleteOpenApiCollectionById = deleteOpenApiCollectionById; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData DeleteOpenApiCollectionById { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new DeleteOpenApiCollectionByIdCommandMutationResultInfo(DeleteOpenApiCollectionById); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ShowWorkspaceCommandQueryResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryResult); + + public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ShowWorkspaceCommandQueryResultInfo info) { - schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); + return new ShowWorkspaceCommandQueryResult(MapIShowWorkspaceCommandQuery_Node(info.Node)); } - return schemaChangeLogEntrys; + throw new global::System.ArgumentException("ShowWorkspaceCommandQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? MapIShowWorkspaceCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) + if (data is null) { - if (!directiveModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); + IShowWorkspaceCommandQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Api(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) { - if (!enumModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ApiDocument(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) { - if (!inputObjectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ApiKey(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) { - if (!interfaceModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Client(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) { - if (!objectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientChangeLog(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - if (!scalarModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientDeployment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) { - if (!typeSystemMemberAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientVersion(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) { - if (!typeSystemMemberModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) { - if (!typeSystemMemberRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Environment(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) { - if (!unionModifiedChange.Severity.HasValue) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_SchemaDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Stage(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_User(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + { + if (!workspace.Personal.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Workspace(workspace.Id ?? throw new global::System.ArgumentNullException(), workspace.Name ?? throw new global::System.ArgumentNullException(), workspace.Personal!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_WorkspaceDocument(); } else { @@ -185324,28 +186502,80 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public ShowWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + { + Node = node; + } + + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new ShowWorkspaceCommandQueryResultInfo(Node); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateWorkspaceCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public CreateWorkspaceCommandMutationResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationResult); + + public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is CreateWorkspaceCommandMutationResultInfo info) { - throw new global::System.ArgumentNullException(); + return new CreateWorkspaceCommandMutationResult(MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace(info.CreateWorkspace)); } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) + throw new global::System.ArgumentException("CreateWorkspaceCommandMutationResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData data) + { + ICreateWorkspaceCommandMutation_CreateWorkspace returnValue = default !; + if (data.__typename.Equals("CreateWorkspacePayload", global::System.StringComparison.Ordinal)) { - mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + returnValue = new CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(MapICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(data.Workspace), MapICreateWorkspaceCommandMutation_CreateWorkspace_ErrorsNonNullableArray(data.Errors)); + } + else + { + throw new global::System.NotSupportedException(); } - return mcpFeatureCollectionDeploymentErrors; + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? MapICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + return null; + } + + ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); } else { @@ -185355,28 +186585,32 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICreateWorkspaceCommandMutation_CreateWorkspace_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) + var createWorkspaceErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData child in list) { - openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + createWorkspaceErrors.Add(MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace_Errors(child)); } - return openApiCollectionDeploymentErrors; + return createWorkspaceErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Errors MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + ICreateWorkspaceCommandMutation_CreateWorkspace_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(validationError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -185386,67 +186620,143 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) + return Create(dataInfo, snapshot); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateWorkspaceCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CreateWorkspaceCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData createWorkspace) + { + CreateWorkspace = createWorkspace; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData CreateWorkspace { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CreateWorkspaceCommandMutationResultInfo(CreateWorkspace); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public ListWorkspaceCommandQueryResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryResult); + + public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is ListWorkspaceCommandQueryResultInfo info) { - throw new global::System.ArgumentNullException(); + return new ListWorkspaceCommandQueryResult(MapIListWorkspaceCommandQuery_Me(info.Me)); } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) + throw new global::System.ArgumentException("ListWorkspaceCommandQueryResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? MapIListWorkspaceCommandQuery_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) + { + if (data is null) { - schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); + return null; } - return schemaDeploymentErrors; + IListWorkspaceCommandQuery_Me returnValue = default !; + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) + { + returnValue = new ListWorkspaceCommandQuery_Me_Viewer(MapIListWorkspaceCommandQuery_Me_Workspaces(data.Workspaces)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? MapIListWorkspaceCommandQuery_Me_Workspaces(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + + IListWorkspaceCommandQuery_Me_Workspaces returnValue = default !; + if (data.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(MapIListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(data.Edges), MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - if (!schemaVersionSyntaxError.Column.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return null; + } - if (!schemaVersionSyntaxError.Position.HasValue) - { - throw new global::System.ArgumentNullException(); - } + var workspacesEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData child in list) + { + workspacesEdges.Add(MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(child)); + } - if (!schemaVersionSyntaxError.Line.HasValue) - { - throw new global::System.ArgumentNullException(); - } + return workspacesEdges; + } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData data) + { + IListWorkspaceCommandQuery_Me_Workspaces_Edges returnValue = default !; + if (data.__typename.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData data) + { + IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IListWorkspaceCommandQuery_Me_Workspaces_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -185464,49 +186774,54 @@ public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOpera // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ListWorkspaceCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public OnSchemaVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData onSchemaVersionPublishingUpdate) + public ListWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) { - OnSchemaVersionPublishingUpdate = onSchemaVersionPublishingUpdate; + Me = me; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData OnSchemaVersionPublishingUpdate { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new OnSchemaVersionPublishUpdatedResultInfo(OnSchemaVersionPublishingUpdate); + return new ListWorkspaceCommandQueryResultInfo(Me); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public UploadSchemaResultFactory() + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult); - public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is UploadSchemaResultInfo info) + if (dataInfo is SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo info) { - return new UploadSchemaResult(MapNonNullableIUploadSchema_UploadSchema(info.UploadSchema)); + return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(info.Me)); } - throw new global::System.ArgumentException("UploadSchemaResultInfo expected."); + throw new global::System.ArgumentException("SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema MapNonNullableIUploadSchema_UploadSchema(global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) { - IUploadSchema_UploadSchema returnValue = default !; - if (data.__typename.Equals("UploadSchemaPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new UploadSchema_UploadSchema_UploadSchemaPayload(MapIUploadSchema_UploadSchema_SchemaVersion(data.SchemaVersion), MapIUploadSchema_UploadSchema_ErrorsNonNullableArray(data.Errors)); + return null; + } + + ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me returnValue = default !; + if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) + { + returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(data.Workspaces)); } else { @@ -185516,17 +186831,17 @@ public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? MapIUploadSchema_UploadSchema_SchemaVersion(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? data) { if (data is null) { return null; } - IUploadSchema_UploadSchema_SchemaVersion returnValue = default !; - if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) + ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces returnValue = default !; + if (data.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal)) { - returnValue = new UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(data.Id ?? throw new global::System.ArgumentNullException()); + returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(data.Edges), MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -185536,40 +186851,58 @@ public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIUploadSchema_UploadSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var uploadSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData child in list) + var workspacesEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData child in list) { - uploadSchemaErrors.Add(MapNonNullableIUploadSchema_UploadSchema_Errors(child)); + workspacesEdges.Add(MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(child)); } - return uploadSchemaErrors; + return workspacesEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_Errors MapNonNullableIUploadSchema_UploadSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData data) { - IUploadSchema_UploadSchema_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges returnValue = default !; + if (data.__typename.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData data) + { + ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -185587,49 +186920,49 @@ public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInf // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public UploadSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData uploadSchema) + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) { - UploadSchema = uploadSchema; + Me = me; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData UploadSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new UploadSchemaResultInfo(UploadSchema); + return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(Me); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PublishSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ValidateSchemaVersionResultFactory() + public PublishSchemaVersionResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersionResult); - public ValidateSchemaVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PublishSchemaVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ValidateSchemaVersionResultInfo info) + if (dataInfo is PublishSchemaVersionResultInfo info) { - return new ValidateSchemaVersionResult(MapNonNullableIValidateSchemaVersion_ValidateSchema(info.ValidateSchema)); + return new PublishSchemaVersionResult(MapNonNullableIPublishSchemaVersion_PublishSchema(info.PublishSchema)); } - throw new global::System.ArgumentException("ValidateSchemaVersionResultInfo expected."); + throw new global::System.ArgumentException("PublishSchemaVersionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema MapNonNullableIValidateSchemaVersion_ValidateSchema(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema MapNonNullableIPublishSchemaVersion_PublishSchema(global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData data) { - IValidateSchemaVersion_ValidateSchema returnValue = default !; - if (data.__typename.Equals("ValidateSchemaPayload", global::System.StringComparison.Ordinal)) + IPublishSchemaVersion_PublishSchema returnValue = default !; + if (data.__typename.Equals("PublishSchemaPayload", global::System.StringComparison.Ordinal)) { - returnValue = new ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(data.Id, MapIValidateSchemaVersion_ValidateSchema_ErrorsNonNullableArray(data.Errors)); + returnValue = new PublishSchemaVersion_PublishSchema_PublishSchemaPayload(data.Id, MapIPublishSchemaVersion_PublishSchema_ErrorsNonNullableArray(data.Errors)); } else { @@ -185639,40 +186972,44 @@ public ValidateSchemaVersionResult Create(global::StrawberryShake.IOperationResu return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIValidateSchemaVersion_ValidateSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIPublishSchemaVersion_PublishSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var validateSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData child in list) + var publishSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData child in list) { - validateSchemaErrors.Add(MapNonNullableIValidateSchemaVersion_ValidateSchema_Errors(child)); + publishSchemaErrors.Add(MapNonNullableIPublishSchemaVersion_PublishSchema_Errors(child)); } - return validateSchemaErrors; + return publishSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema_Errors MapNonNullableIValidateSchemaVersion_ValidateSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPublishSchemaVersion_PublishSchema_Errors MapNonNullableIPublishSchemaVersion_PublishSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData data) { - IValidateSchemaVersion_ValidateSchema_Errors? returnValue; + IPublishSchemaVersion_PublishSchema_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData schemaNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(schemaNotFoundError.Message ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.ApiId ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.Tag ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData schemaNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_SchemaNotFoundError(schemaNotFoundError.Message ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.ApiId ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.Tag ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PublishSchemaVersion_PublishSchema_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -185690,46 +187027,46 @@ public ValidateSchemaVersionResult Create(global::StrawberryShake.IOperationResu // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PublishSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData validateSchema) + public PublishSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData publishSchema) { - ValidateSchema = validateSchema; + PublishSchema = publishSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData ValidateSchema { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData PublishSchema { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateSchemaVersionResultInfo(ValidateSchema); + return new PublishSchemaVersionResultInfo(PublishSchema); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class OnSchemaVersionPublishUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public OnSchemaVersionValidationUpdatedResultFactory() + public OnSchemaVersionPublishUpdatedResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdatedResult); - public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public OnSchemaVersionPublishUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is OnSchemaVersionValidationUpdatedResultInfo info) + if (dataInfo is OnSchemaVersionPublishUpdatedResultInfo info) { - return new OnSchemaVersionValidationUpdatedResult(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate(info.OnSchemaVersionValidationUpdate)); + return new OnSchemaVersionPublishUpdatedResult(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate(info.OnSchemaVersionPublishingUpdate)); } - throw new global::System.ArgumentException("OnSchemaVersionValidationUpdatedResultInfo expected."); + throw new global::System.ArgumentException("OnSchemaVersionPublishUpdatedResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData data) { - IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate? returnValue; + IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { if (!operationInProgress.State.HasValue) @@ -185737,34 +187074,56 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationFailedData schemaVersionValidationFailed) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData processingTaskApproved) { - if (!schemaVersionValidationFailed.State.HasValue) + if (!processingTaskApproved.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed(schemaVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionValidationFailed.State!.Value, MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ErrorsNonNullableArray(schemaVersionValidationFailed.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskApproved(processingTaskApproved.__typename ?? throw new global::System.ArgumentNullException(), processingTaskApproved.State!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationSuccessData schemaVersionValidationSuccess) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData processingTaskIsQueued) { - if (!schemaVersionValidationSuccess.State.HasValue) + if (!processingTaskIsQueued.QueuePosition.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess(schemaVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionValidationSuccess.State!.Value, MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ChangesNonNullableArray(schemaVersionValidationSuccess.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsQueued(processingTaskIsQueued.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.Queued ?? throw new global::System.ArgumentNullException(), processingTaskIsQueued.QueuePosition!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData processingTaskIsReady) { - if (!validationInProgress.State.HasValue) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ProcessingTaskIsReady(processingTaskIsReady.__typename ?? throw new global::System.ArgumentNullException(), processingTaskIsReady.Ready ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishFailedData schemaVersionPublishFailed) + { + if (!schemaVersionPublishFailed.State.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishFailed(schemaVersionPublishFailed.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionPublishFailed.State!.Value, MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ErrorsNonNullableArray(schemaVersionPublishFailed.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishSuccessData schemaVersionPublishSuccess) + { + if (!schemaVersionPublishSuccess.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_SchemaVersionPublishSuccess(schemaVersionPublishSuccess.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionPublishSuccess.State!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData waitForApproval) + { + if (!waitForApproval.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_WaitForApproval(waitForApproval.__typename ?? throw new global::System.ArgumentNullException(), waitForApproval.State!.Value, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(waitForApproval.Deployment)); } else { @@ -185774,56 +187133,60 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var schemaVersionValidationErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData child in list) + var schemaVersionPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData child in list) { - schemaVersionValidationErrors.Add(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors(child)); + schemaVersionPublishErrors.Add(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors(child)); } - return schemaVersionValidationErrors; + return schemaVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData data) { - IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ReadyTimeoutError(); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData schemaVersionChangeViolationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError(schemaVersionChangeViolationError.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(schemaVersionChangeViolationError.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionChangeViolationError(schemaVersionChangeViolationError.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(schemaVersionChangeViolationError.Changes)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) { @@ -185842,11 +187205,11 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -185887,28 +187250,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -185938,32 +187301,32 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -185973,28 +187336,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) { @@ -186008,25 +187371,25 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); @@ -186039,28 +187402,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -186090,32 +187453,32 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); } return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -186125,28 +187488,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { @@ -186160,25 +187523,25 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); @@ -186191,17 +187554,17 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -186211,28 +187574,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } else { @@ -186242,28 +187605,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryErrors = new global::System.Collections.Generic.List(); + var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } else { @@ -186273,28 +187636,28 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -187142,225 +188505,33 @@ public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } - - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) - { - schemaChangeLogEntrys.Add(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes(child)); - } - - return schemaChangeLogEntrys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) - { - IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) - { - if (!directiveModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) - { - if (!enumModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) - { - if (!inputObjectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) - { - if (!interfaceModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) - { - if (!objectModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) - { - if (!scalarModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) - { - if (!typeSystemMemberAddedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) - { - if (!typeSystemMemberModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) - { - if (!typeSystemMemberRemovedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) - { - if (!unionModifiedChange.Severity.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public OnSchemaVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData onSchemaVersionValidationUpdate) - { - OnSchemaVersionValidationUpdate = onSchemaVersionValidationUpdate; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData OnSchemaVersionValidationUpdate { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new OnSchemaVersionValidationUpdatedResultInfo(OnSchemaVersionValidationUpdate); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public UpdateStagesResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUpdateStagesResult); - - public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is UpdateStagesResultInfo info) - { - return new UpdateStagesResult(MapNonNullableIUpdateStages_UpdateStages(info.UpdateStages)); - } - - throw new global::System.ArgumentException("UpdateStagesResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages MapNonNullableIUpdateStages_UpdateStages(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData data) - { - IUpdateStages_UpdateStages returnValue = default !; - if (data.__typename.Equals("UpdateStagesPayload", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_UpdateStagesPayload(MapIUpdateStages_UpdateStages_Api(data.Api), MapIUpdateStages_UpdateStages_ErrorsNonNullableArray(data.Errors)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api? MapIUpdateStages_UpdateStages_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment(global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? data) { if (data is null) { return null; } - IUpdateStages_UpdateStages_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) { - returnValue = new UpdateStages_UpdateStages_Api_Api(MapNonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(data.Stages ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ClientDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(clientDeployment.Errors)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_FusionConfigurationDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(fusionConfigurationDeployment.Errors)); } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_McpFeatureCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(mcpFeatureCollectionDeployment.Errors)); } - - var stages = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) { - stages.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_OpenApiCollectionDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(openApiCollectionDeployment.Errors)); } - - return stages; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages MapNonNullableIUpdateStages_UpdateStages_Api_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) - { - IUpdateStages_UpdateStages_Api_Stages returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) { - returnValue = new UpdateStages_UpdateStages_Api_Stages_Stage(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.DisplayName ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(data.Conditions ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_SchemaDeployment(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(schemaDeployment.Errors)); } else { @@ -187370,91 +188541,28 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var stageConditions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData child in list) - { - stageConditions.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); - } - - return stageConditions; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData data) - { - IUpdateStages_UpdateStages_Api_Stages_Conditions? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData afterStageCondition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(afterStageCondition.AfterStage)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) - { - if (data is null) - { - return null; - } - - IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::System.Collections.Generic.IReadOnlyList? MapIUpdateStages_UpdateStages_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - return null; - } - - var updateStagesErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData child in list) + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData child in list) { - updateStagesErrors.Add(MapNonNullableIUpdateStages_UpdateStages_Errors(child)); + clientDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); } - return updateStagesErrors; + return clientDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors MapNonNullableIUpdateStages_UpdateStages_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData data) { - IUpdateStages_UpdateStages_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StagesHavePublishedDependenciesErrorData stagesHavePublishedDependenciesError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StagesHavePublishedDependenciesError(stagesHavePublishedDependenciesError.__typename ?? throw new global::System.ArgumentNullException(), stagesHavePublishedDependenciesError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(stagesHavePublishedDependenciesError.Stages)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageValidationErrorData stageValidationError) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Errors_StageValidationError(stageValidationError.Message ?? throw new global::System.ArgumentNullException(), stageValidationError.__typename ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else { @@ -187464,68 +188572,44 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var stages = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) - { - stages.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages(child)); - } - - return stages; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages MapNonNullableIUpdateStages_UpdateStages_Errors_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) - { - IUpdateStages_UpdateStages_Errors_Stages returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_Stage(data.Name ?? throw new global::System.ArgumentNullException(), MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(data.PublishedSchema), MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(data.PublishedClients ?? throw new global::System.ArgumentNullException())); - } - else + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData child in list) { - throw new global::System.NotSupportedException(); + fusionConfigurationDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(child)); } - return returnValue; + return fusionConfigurationDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - - IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema returnValue = default !; - if (data.__typename.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_PublishedSchemaVersion(MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(data.Version)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? data) - { - if (data is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); } - - IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version returnValue = default !; - if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version_SchemaVersion(data.Tag ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -187535,319 +188619,114 @@ public UpdateStagesResult Create(global::StrawberryShake.IOperationResultDataInf return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var publishedClients = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData child in list) - { - publishedClients.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(child)); - } - - return publishedClients; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData data) - { - IUpdateStages_UpdateStages_Errors_Stages_PublishedClients returnValue = default !; - if (data.__typename.Equals("PublishedClient", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedClient(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(data.Client ?? throw new global::System.ArgumentNullException()), MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(data.PublishedVersions ?? throw new global::System.ArgumentNullException())); - } - else + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) { - throw new global::System.NotSupportedException(); + schemaChangeLogEntrys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(child)); } - return returnValue; + return schemaChangeLogEntrys; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) { - IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client_Client(data.Name ?? throw new global::System.ArgumentNullException()); - } - else + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + if (!directiveModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) - { - if (list is null) - { - throw new global::System.ArgumentNullException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); } - - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) { - publishedClientVersions.Add(MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(child)); - } - - return publishedClientVersions; - } + if (!enumModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions MapNonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) - { - IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_PublishedClientVersion(MapIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(data.Version)); - } - else - { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version? MapIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? data) - { - if (data is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) { - return null; - } + if (!inputObjectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) - { - returnValue = new UpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version_ClientVersion(data.Tag ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public UpdateStagesResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData updateStages) - { - UpdateStages = updateStages; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData UpdateStages { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new UpdateStagesResultInfo(UpdateStages); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ListStagesQueryResultFactory() - { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListStagesQueryResult); + if (!interfaceModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ListStagesQueryResultInfo info) - { - return new ListStagesQueryResult(MapIListStagesQuery_Node(info.Node)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); } - - throw new global::System.ArgumentException("ListStagesQueryResultInfo expected."); - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node? MapIListStagesQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) - { - if (data is null) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) { - return null; - } + if (!objectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IListStagesQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Api(MapNonNullableIListStagesQuery_Node_StagesNonNullableArray(api.Stages)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ApiKey(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Client(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_ClientVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_CoordinateClientUsageMetrics(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Environment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_FusionConfigurationChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_FusionConfigurationDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLDirectiveArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLDirectiveDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLEnumTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLEnumValueDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInputObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInputObjectTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLInterfaceTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLObjectFieldArgumentDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLObjectFieldDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLScalarTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_GraphQLUnionTypeDefinition(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Group(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_McpFeatureCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollection(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OpenApiCollectionVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Organization(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_OrganizationMember(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_SchemaChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_SchemaDeployment(); + if (!scalarModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Stage(); + if (!typeSystemMemberAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_User(); + if (!typeSystemMemberModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_Workspace(); + if (!typeSystemMemberRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ListStagesQuery_Node_WorkspaceDocument(); + if (!unionModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); } else { @@ -187857,28 +188736,28 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIListStagesQuery_Node_StagesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var stages = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.StageData child in list) + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData child in list) { - stages.Add(MapNonNullableIListStagesQuery_Node_Stages(child)); + mcpFeatureCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); } - return stages; + return mcpFeatureCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListStagesQuery_Node_Stages MapNonNullableIListStagesQuery_Node_Stages(global::ChilliCream.Nitro.CommandLine.Client.State.StageData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData data) { - IListStagesQuery_Node_Stages returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new ListStagesQuery_Node_Stages_Stage(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.DisplayName ?? throw new global::System.ArgumentNullException(), MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(data.Conditions ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else { @@ -187888,28 +188767,28 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var stageConditions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData child in list) + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData child in list) { - stageConditions.Add(MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); + openApiCollectionDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); } - return stageConditions; + return openApiCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions MapNonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData data) { - IUpdateStages_UpdateStages_Api_Stages_Conditions? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData afterStageCondition) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStageCondition(MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(afterStageCondition.AfterStage)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else { @@ -187919,17 +188798,67 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage? MapIUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData child in list) { - returnValue = new UpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + schemaDeploymentErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(child)); + } + + return schemaDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError_1(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + { + if (!schemaVersionSyntaxError.Column.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Position.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Line.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -187947,52 +188876,49 @@ public ListStagesQueryResult Create(global::StrawberryShake.IOperationResultData // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class OnSchemaVersionPublishUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListStagesQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + public OnSchemaVersionPublishUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData onSchemaVersionPublishingUpdate) { - Node = node; + OnSchemaVersionPublishingUpdate = onSchemaVersionPublishingUpdate; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData OnSchemaVersionPublishingUpdate { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListStagesQueryResultInfo(Node); + return new OnSchemaVersionPublishUpdatedResultInfo(OnSchemaVersionPublishingUpdate); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class UploadSchemaResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CreateWorkspaceCommandMutationResultFactory() + public UploadSchemaResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutationResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IUploadSchemaResult); - public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public UploadSchemaResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CreateWorkspaceCommandMutationResultInfo info) + if (dataInfo is UploadSchemaResultInfo info) { - return new CreateWorkspaceCommandMutationResult(MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace(info.CreateWorkspace)); + return new UploadSchemaResult(MapNonNullableIUploadSchema_UploadSchema(info.UploadSchema)); } - throw new global::System.ArgumentException("CreateWorkspaceCommandMutationResultInfo expected."); + throw new global::System.ArgumentException("UploadSchemaResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema MapNonNullableIUploadSchema_UploadSchema(global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData data) { - ICreateWorkspaceCommandMutation_CreateWorkspace returnValue = default !; - if (data.__typename.Equals("CreateWorkspacePayload", global::System.StringComparison.Ordinal)) + IUploadSchema_UploadSchema returnValue = default !; + if (data.__typename.Equals("UploadSchemaPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateWorkspaceCommandMutation_CreateWorkspace_CreateWorkspacePayload(MapICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(data.Workspace), MapICreateWorkspaceCommandMutation_CreateWorkspace_ErrorsNonNullableArray(data.Errors)); + returnValue = new UploadSchema_UploadSchema_UploadSchemaPayload(MapIUploadSchema_UploadSchema_SchemaVersion(data.SchemaVersion), MapIUploadSchema_UploadSchema_ErrorsNonNullableArray(data.Errors)); } else { @@ -188002,17 +188928,17 @@ public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOper return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace? MapICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_SchemaVersion? MapIUploadSchema_UploadSchema_SchemaVersion(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? data) { if (data is null) { return null; } - ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + IUploadSchema_UploadSchema_SchemaVersion returnValue = default !; + if (data.__typename.Equals("SchemaVersion", global::System.StringComparison.Ordinal)) { - returnValue = new CreateWorkspaceCommandMutation_CreateWorkspace_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); + returnValue = new UploadSchema_UploadSchema_SchemaVersion_SchemaVersion(data.Id ?? throw new global::System.ArgumentNullException()); } else { @@ -188022,32 +188948,44 @@ public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOper return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateWorkspaceCommandMutation_CreateWorkspace_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIUploadSchema_UploadSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var createWorkspaceErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData child in list) + var uploadSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData child in list) { - createWorkspaceErrors.Add(MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace_Errors(child)); + uploadSchemaErrors.Add(MapNonNullableIUploadSchema_UploadSchema_Errors(child)); } - return createWorkspaceErrors; + return uploadSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateWorkspaceCommandMutation_CreateWorkspace_Errors MapNonNullableICreateWorkspaceCommandMutation_CreateWorkspace_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IUploadSchema_UploadSchema_Errors MapNonNullableIUploadSchema_UploadSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData data) { - ICreateWorkspaceCommandMutation_CreateWorkspace_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IUploadSchema_UploadSchema_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutation_CreateWorkspace_Errors_UnauthorizedOperation(unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData validationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData concurrentOperationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CreateWorkspaceCommandMutation_CreateWorkspace_Errors_ValidationError(validationError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_ConcurrentOperationError(concurrentOperationError.__typename ?? throw new global::System.ArgumentNullException(), concurrentOperationError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData duplicatedTagError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_DuplicatedTagError(duplicatedTagError.__typename ?? throw new global::System.ArgumentNullException(), duplicatedTagError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.UploadSchema_UploadSchema_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -188065,74 +189003,49 @@ public CreateWorkspaceCommandMutationResult Create(global::StrawberryShake.IOper // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class UploadSchemaResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CreateWorkspaceCommandMutationResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData createWorkspace) + public UploadSchemaResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData uploadSchema) { - CreateWorkspace = createWorkspace; + UploadSchema = uploadSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData CreateWorkspace { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData UploadSchema { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CreateWorkspaceCommandMutationResultInfo(CreateWorkspace); + return new UploadSchemaResultInfo(UploadSchema); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ValidateSchemaVersionResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ListWorkspaceCommandQueryResultFactory() + public ValidateSchemaVersionResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQueryResult); - - public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is ListWorkspaceCommandQueryResultInfo info) - { - return new ListWorkspaceCommandQueryResult(MapIListWorkspaceCommandQuery_Me(info.Me)); - } - - throw new global::System.ArgumentException("ListWorkspaceCommandQueryResultInfo expected."); - } + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersionResult); - private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me? MapIListWorkspaceCommandQuery_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) + public ValidateSchemaVersionResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (data is null) - { - return null; - } - - IListWorkspaceCommandQuery_Me returnValue = default !; - if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) - { - returnValue = new ListWorkspaceCommandQuery_Me_Viewer(MapIListWorkspaceCommandQuery_Me_Workspaces(data.Workspaces)); - } - else + if (dataInfo is ValidateSchemaVersionResultInfo info) { - throw new global::System.NotSupportedException(); + return new ValidateSchemaVersionResult(MapNonNullableIValidateSchemaVersion_ValidateSchema(info.ValidateSchema)); } - return returnValue; + throw new global::System.ArgumentException("ValidateSchemaVersionResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces? MapIListWorkspaceCommandQuery_Me_Workspaces(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema MapNonNullableIValidateSchemaVersion_ValidateSchema(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData data) { - if (data is null) - { - return null; - } - - IListWorkspaceCommandQuery_Me_Workspaces returnValue = default !; - if (data.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal)) + IValidateSchemaVersion_ValidateSchema returnValue = default !; + if (data.__typename.Equals("ValidateSchemaPayload", global::System.StringComparison.Ordinal)) { - returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_WorkspacesConnection(MapIListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(data.Edges), MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new ValidateSchemaVersion_ValidateSchema_ValidateSchemaPayload(data.Id, MapIValidateSchemaVersion_ValidateSchema_ErrorsNonNullableArray(data.Errors)); } else { @@ -188142,58 +189055,44 @@ public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIValidateSchemaVersion_ValidateSchema_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var workspacesEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData child in list) + var validateSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData child in list) { - workspacesEdges.Add(MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(child)); + validateSchemaErrors.Add(MapNonNullableIValidateSchemaVersion_ValidateSchema_Errors(child)); } - return workspacesEdges; + return validateSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateSchemaVersion_ValidateSchema_Errors MapNonNullableIValidateSchemaVersion_ValidateSchema_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData data) { - IListWorkspaceCommandQuery_Me_Workspaces_Edges returnValue = default !; - if (data.__typename.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal)) + IValidateSchemaVersion_ValidateSchema_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData stageNotFoundError) { - returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_Edges_WorkspacesEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_StageNotFoundError(stageNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Message ?? throw new global::System.ArgumentNullException(), stageNotFoundError.Name ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData schemaNotFoundError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_SchemaNotFoundError(schemaNotFoundError.Message ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.ApiId ?? throw new global::System.ArgumentNullException(), schemaNotFoundError.Tag ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData data) - { - IListWorkspaceCommandQuery_Me_Workspaces_Edges_Node returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData apiNotFoundError) { - returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_Edges_Node_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_ApiNotFoundError(apiNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), apiNotFoundError.Message ?? throw new global::System.ArgumentNullException(), apiNotFoundError.ApiId ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.IListWorkspaceCommandQuery_Me_Workspaces_PageInfo MapNonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - IListWorkspaceCommandQuery_Me_Workspaces_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) { - returnValue = new ListWorkspaceCommandQuery_Me_Workspaces_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateSchemaVersion_ValidateSchema_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -188211,54 +189110,81 @@ public ListWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ValidateSchemaVersionResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ListWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) + public ValidateSchemaVersionResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData validateSchema) { - Me = me; + ValidateSchema = validateSchema; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData ValidateSchema { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ListWorkspaceCommandQueryResultInfo(Me); + return new ValidateSchemaVersionResultInfo(ValidateSchema); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class OnSchemaVersionValidationUpdatedResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory() + public OnSchemaVersionValidationUpdatedResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_QueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdatedResult); - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public OnSchemaVersionValidationUpdatedResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo info) + if (dataInfo is OnSchemaVersionValidationUpdatedResultInfo info) { - return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(info.Me)); + return new OnSchemaVersionValidationUpdatedResult(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate(info.OnSchemaVersionValidationUpdate)); } - throw new global::System.ArgumentException("SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo expected."); + throw new global::System.ArgumentException("OnSchemaVersionValidationUpdatedResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData data) { - if (data is null) + IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData operationInProgress) { - return null; + if (!operationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_OperationInProgress(operationInProgress.__typename ?? throw new global::System.ArgumentNullException(), operationInProgress.State!.Value); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationFailedData schemaVersionValidationFailed) + { + if (!schemaVersionValidationFailed.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me returnValue = default !; - if (data.__typename.Equals("Viewer", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationFailed(schemaVersionValidationFailed.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionValidationFailed.State!.Value, MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ErrorsNonNullableArray(schemaVersionValidationFailed.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationSuccessData schemaVersionValidationSuccess) { - returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Viewer(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(data.Workspaces)); + if (!schemaVersionValidationSuccess.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_SchemaVersionValidationSuccess(schemaVersionValidationSuccess.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionValidationSuccess.State!.Value, MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ChangesNonNullableArray(schemaVersionValidationSuccess.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData validationInProgress) + { + if (!validationInProgress.State.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ValidationInProgress(validationInProgress.__typename ?? throw new global::System.ArgumentNullException(), validationInProgress.State!.Value); } else { @@ -188268,17 +189194,79 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces returnValue = default !; - if (data.__typename.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal)) + var schemaVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData child in list) { - returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_WorkspacesConnection(MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(data.Edges), MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + schemaVersionValidationErrors.Add(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors(child)); + } + + return schemaVersionValidationErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData data) + { + IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData operationsAreNotAllowedError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_OperationsAreNotAllowedError(operationsAreNotAllowedError.__typename ?? throw new global::System.ArgumentNullException(), operationsAreNotAllowedError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData processingTimeoutError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ProcessingTimeoutError(processingTimeoutError.__typename ?? throw new global::System.ArgumentNullException(), processingTimeoutError.Message ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData readyTimeoutError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_ReadyTimeoutError(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData schemaVersionChangeViolationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionChangeViolationError(schemaVersionChangeViolationError.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(schemaVersionChangeViolationError.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData schemaVersionSyntaxError) + { + if (!schemaVersionSyntaxError.Column.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Position.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!schemaVersionSyntaxError.Line.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_SchemaVersionSyntaxError(schemaVersionSyntaxError.__typename ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Message ?? throw new global::System.ArgumentNullException(), schemaVersionSyntaxError.Column!.Value, schemaVersionSyntaxError.Position!.Value, schemaVersionSyntaxError.Line!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData unexpectedProcessingError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_UnexpectedProcessingError(unexpectedProcessingError.__typename ?? throw new global::System.ArgumentNullException(), unexpectedProcessingError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -188288,28 +189276,28 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var workspacesEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData child in list) + var graphQLSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData child in list) { - workspacesEdges.Add(MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(child)); + graphQLSchemaErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); } - return workspacesEdges; + return graphQLSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData data) { - ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges returnValue = default !; - if (data.__typename.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors returnValue = default !; + if (data.__typename.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal)) { - returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_WorkspacesEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors_GraphQLSchemaError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code); } else { @@ -188319,12 +189307,28 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Personal ?? throw new global::System.ArgumentNullException()); + throw new global::System.ArgumentNullException(); + } + + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) + { + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + } + + return mcpFeatureCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -188334,12 +189338,17 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo MapNonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? data) { - ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new SetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + return null; + } + + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -188349,227 +189358,480 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResult Create(global::Str return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - return Create(dataInfo, snapshot); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) + { + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + } + + return mcpFeatureCollectionValidationEntitys; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? me) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - Me = me; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Me { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) + { + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + } + + return mcpFeatureCollectionValidationEntityErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(Me); + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError(mcpFeatureCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public ShowWorkspaceCommandQueryResultFactory() + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) + { + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + } + + return mcpFeatureCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) + { + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQueryResult); + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) + { + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } + + return openApiCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) { - if (dataInfo is ShowWorkspaceCommandQueryResultInfo info) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - return new ShowWorkspaceCommandQueryResult(MapIShowWorkspaceCommandQuery_Node(info.Node)); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); } - throw new global::System.ArgumentException("ShowWorkspaceCommandQueryResultInfo expected."); + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IShowWorkspaceCommandQuery_Node? MapIShowWorkspaceCommandQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? data) { if (data is null) { return null; } - IShowWorkspaceCommandQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection returnValue = default !; + if (data.__typename.Equals("OpenApiCollection", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Api(); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection_OpenApiCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ApiDocument(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ApiKey(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) + + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Client(); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) + + return openApiCollectionValidationEntitys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_ClientVersion(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_CoordinateClientUsageMetrics(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Environment(); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) + + return openApiCollectionValidationEntityErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_FusionConfigurationChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_FusionConfigurationDeployment(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError(openApiCollectionValidationEntityValidationError.Message ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLDirectiveArgumentDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLDirectiveDefinition(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLEnumTypeDefinition(); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLEnumValueDefinition(); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInputObjectFieldDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + { + if (data is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInputObjectTypeDefinition(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceFieldDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLInterfaceTypeDefinition(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldArgumentDefinition(); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + + return persistedQueryValidationFaileds; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; + if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLObjectFieldDefinition(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLScalarTypeDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_GraphQLUnionTypeDefinition(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Group(); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + + return persistedQueryErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; + if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollection(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionChangeLog(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionDeployment(); + return null; } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_McpFeatureCollectionVersion(); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + + return persistedQueryErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + { + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; + if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollection(); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionChangeLog(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionDeployment(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OpenApiCollectionVersion(); + schemaChangeLogEntrys.Add(MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + + return schemaChangeLogEntrys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes MapNonNullableIOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) + { + IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Organization(); + if (!directiveModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_OrganizationMember(); + if (!enumModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_SchemaChangeLog(); + if (!inputObjectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_SchemaDeployment(); + if (!interfaceModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Stage(); + if (!objectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_User(); + if (!scalarModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) { - if (!workspace.Personal.HasValue) + if (!typeSystemMemberAddedChange.Severity.HasValue) { throw new global::System.ArgumentNullException(); } - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_Workspace(workspace.Id ?? throw new global::System.ArgumentNullException(), workspace.Name ?? throw new global::System.ArgumentNullException(), workspace.Personal!.Value); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ShowWorkspaceCommandQuery_Node_WorkspaceDocument(); + if (!typeSystemMemberModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) + { + if (!typeSystemMemberRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) + { + if (!unionModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); } else { @@ -188579,85 +189841,142 @@ public ShowWorkspaceCommandQueryResult Create(global::StrawberryShake.IOperation return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - return Create(dataInfo, snapshot); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var directiveChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData child in list) + { + directiveChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(child)); + } + + return directiveChanges; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public ShowWorkspaceCommandQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData data) { - Node = node; - } + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) + { + if (!argumentAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentAdded(argumentAdded.__typename ?? throw new global::System.ArgumentNullException(), argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) + { + if (!argumentChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new ShowWorkspaceCommandQueryResultInfo(Node); - } - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentChanged(argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) + { + if (!argumentRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public SelectApiPromptQueryResultFactory() - { - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ArgumentRemoved(argumentRemoved.__typename ?? throw new global::System.ArgumentNullException(), argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryResult); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData directiveLocationAdded) + { + if (!directiveLocationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is SelectApiPromptQueryResultInfo info) + if (!directiveLocationAdded.Location.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationAdded(directiveLocationAdded.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationAdded.Severity!.Value, directiveLocationAdded.Location!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData directiveLocationRemoved) + { + if (!directiveLocationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (!directiveLocationRemoved.Location.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DirectiveLocationRemoved(directiveLocationRemoved.__typename ?? throw new global::System.ArgumentNullException(), directiveLocationRemoved.Severity!.Value, directiveLocationRemoved.Location!.Value); + } + else { - return new SelectApiPromptQueryResult(MapISelectApiPromptQuery_WorkspaceById(info.WorkspaceById)); + throw new global::System.NotSupportedException(); } - throw new global::System.ArgumentException("SelectApiPromptQueryResultInfo expected."); + return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? MapISelectApiPromptQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - ISelectApiPromptQuery_WorkspaceById returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) - { - returnValue = new SelectApiPromptQuery_WorkspaceById_Workspace(MapISelectApiPromptQuery_WorkspaceById_Apis(data.Apis)); - } - else + var argumentChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData child in list) { - throw new global::System.NotSupportedException(); + argumentChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(child)); } - return returnValue; + return argumentChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? MapISelectApiPromptQuery_WorkspaceById_Apis(global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - return null; + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange(deprecatedChange.__typename ?? throw new global::System.ArgumentNullException(), deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) + { + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ISelectApiPromptQuery_WorkspaceById_Apis returnValue = default !; - if (data.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(MapISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(data.Edges), MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged(typeChanged.__typename ?? throw new global::System.ArgumentNullException(), typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException()); } else { @@ -188667,28 +189986,60 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var apisEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData child in list) + var enumChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData child in list) { - apisEdges.Add(MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(child)); + enumChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(child)); } - return apisEdges; + return enumChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData data) { - ISelectApiPromptQuery_WorkspaceById_Apis_Edges returnValue = default !; - if (data.__typename.Equals("ApisEdge", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_1(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData enumValueAdded) + { + if (!enumValueAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueAdded(enumValueAdded.__typename ?? throw new global::System.ArgumentNullException(), enumValueAdded.Severity!.Value, enumValueAdded.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData enumValueChanged) + { + if (!enumValueChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueChanged(enumValueChanged.__typename ?? throw new global::System.ArgumentNullException(), enumValueChanged.Severity!.Value, enumValueChanged.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(enumValueChanged.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData enumValueRemoved) + { + if (!enumValueRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_EnumValueRemoved(enumValueRemoved.__typename ?? throw new global::System.ArgumentNullException(), enumValueRemoved.Severity!.Value, enumValueRemoved.Coordinate ?? throw new global::System.ArgumentNullException()); } else { @@ -188698,32 +190049,42 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(data.Workspace), MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); + throw new global::System.ArgumentNullException(); } - else + + var enumValueChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData child in list) { - throw new global::System.NotSupportedException(); + enumValueChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(child)); } - return returnValue; + return enumValueChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace? MapICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1(global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_1? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - return null; - } + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace returnValue = default !; - if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_1(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_1(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); } else { @@ -188733,42 +190094,60 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings returnValue = default !; - if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) + if (list is null) { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_ApiSettings(MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); + throw new global::System.ArgumentNullException(); } - else + + var inputObjectChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData child in list) { - throw new global::System.NotSupportedException(); + inputObjectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(child)); } - return returnValue; + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry MapNonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData data) { - ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry returnValue = default !; - if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new CreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_2(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - throw new global::System.NotSupportedException(); - } + if (!fieldAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - return returnValue; - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) + { + if (!fieldRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData inputFieldChanged) { - returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + if (!inputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InputFieldChanged(inputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), inputFieldChanged.Severity!.Value, inputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), inputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(inputFieldChanged.Changes)); } else { @@ -188778,222 +190157,312 @@ public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResul return returnValue; } - global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) - { - return Create(dataInfo, snapshot); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo - { - public SelectApiPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) - { - WorkspaceById = workspaceById; - } - - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } - public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); - public global::System.UInt64 Version => 0; - - public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) - { - return new SelectApiPromptQueryResultInfo(WorkspaceById); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory - { - public PageClientVersionDetailQueryResultFactory() + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - } - - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryResult); + if (list is null) + { + throw new global::System.ArgumentNullException(); + } - public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) - { - if (dataInfo is PageClientVersionDetailQueryResultInfo info) + var inputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData child in list) { - return new PageClientVersionDetailQueryResult(MapIPageClientVersionDetailQuery_Node(info.Node)); + inputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(child)); } - throw new global::System.ArgumentException("PageClientVersionDetailQueryResultInfo expected."); + return inputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? MapIPageClientVersionDetailQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2(global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData data) { - if (data is null) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_2? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - return null; - } + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - IPageClientVersionDetailQuery_Node? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Api(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ApiDocument(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ApiKey(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Client(MapIPageClientVersionDetailQuery_Node_Versions(client.Versions)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientChangeLog(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientDeployment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientVersion(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Environment(); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_2(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_FusionConfigurationDeployment(); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_2(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition(); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_1(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + + var interfaceChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition(); + interfaceChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + + return interfaceChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition(); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_3(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition(); + if (!fieldAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_1(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + if (!fieldRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_1(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition(); + if (!interfaceImplementationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition(); + if (!interfaceImplementationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition(); + if (!outputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData possibleTypeAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition(); + if (!possibleTypeAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeAdded(possibleTypeAdded.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeAdded.Severity!.Value, possibleTypeAdded.TypeName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData possibleTypeRemoved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition(); + if (!possibleTypeRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_PossibleTypeRemoved(possibleTypeRemoved.__typename ?? throw new global::System.ArgumentNullException(), possibleTypeRemoved.Severity!.Value, possibleTypeRemoved.TypeName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Group(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + + var outputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollection(); + outputFieldChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + + return outputFieldChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3(global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData argumentAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog(); + if (!argumentAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentAdded(argumentAdded.Severity!.Value, argumentAdded.Coordinate ?? throw new global::System.ArgumentNullException(), argumentAdded.Name ?? throw new global::System.ArgumentNullException(), argumentAdded.TypeName ?? throw new global::System.ArgumentNullException(), argumentAdded.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData argumentChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment(); + if (!argumentChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentChanged(argumentChanged.Severity!.Value, argumentChanged.Coordinate ?? throw new global::System.ArgumentNullException(), argumentChanged.Name ?? throw new global::System.ArgumentNullException(), argumentChanged.__typename ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_ChangesNonNullableArray(argumentChanged.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData argumentRemoved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion(); + if (!argumentRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_ArgumentRemoved(argumentRemoved.Severity!.Value, argumentRemoved.Coordinate ?? throw new global::System.ArgumentNullException(), argumentRemoved.Name ?? throw new global::System.ArgumentNullException(), argumentRemoved.TypeName ?? throw new global::System.ArgumentNullException(), argumentRemoved.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData deprecatedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollection(); + if (!deprecatedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DeprecatedChange_3(deprecatedChange.Severity!.Value, deprecatedChange.DeprecationReason); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog(); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_DescriptionChanged_3(descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New, descriptionChanged.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData typeChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment(); + if (!typeChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_TypeChanged_2(typeChanged.Severity!.Value, typeChanged.OldType ?? throw new global::System.ArgumentNullException(), typeChanged.NewType ?? throw new global::System.ArgumentNullException(), typeChanged.__typename ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionVersion(); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Organization(); + throw new global::System.ArgumentNullException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + + var objectChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData child in list) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OrganizationMember(); + objectChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(child)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + + return objectChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4(global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData data) + { + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_SchemaChangeLog(); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_4(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData fieldAddedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_SchemaDeployment(); + if (!fieldAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldAddedChange_2(fieldAddedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldAddedChange.Severity!.Value, fieldAddedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldAddedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldAddedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData fieldRemovedChange) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Stage(); + if (!fieldRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_FieldRemovedChange_2(fieldRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.Severity!.Value, fieldRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.TypeName ?? throw new global::System.ArgumentNullException(), fieldRemovedChange.FieldName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData interfaceImplementationAdded) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_User(); + if (!interfaceImplementationAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationAdded_1(interfaceImplementationAdded.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationAdded.Severity!.Value, interfaceImplementationAdded.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData interfaceImplementationRemoved) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Workspace(); + if (!interfaceImplementationRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_InterfaceImplementationRemoved_1(interfaceImplementationRemoved.__typename ?? throw new global::System.ArgumentNullException(), interfaceImplementationRemoved.Severity!.Value, interfaceImplementationRemoved.InterfaceName ?? throw new global::System.ArgumentNullException()); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData outputFieldChanged) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_WorkspaceDocument(); + if (!outputFieldChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_OutputFieldChanged_1(outputFieldChanged.__typename ?? throw new global::System.ArgumentNullException(), outputFieldChanged.Severity!.Value, outputFieldChanged.Coordinate ?? throw new global::System.ArgumentNullException(), outputFieldChanged.FieldName ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_Changes_3NonNullableArray(outputFieldChanged.Changes)); } else { @@ -189003,32 +190472,33 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? MapIPageClientVersionDetailQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - IPageClientVersionDetailQuery_Node_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) - { - returnValue = new PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(MapNonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException()), MapIPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(data.Edges)); - } - else + var scalarChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData child in list) { - throw new global::System.NotSupportedException(); + scalarChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return returnValue; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo MapNonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData data) { - IPageClientVersionDetailQuery_Node_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_5(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } else { @@ -189038,43 +190508,51 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { - return null; + throw new global::System.ArgumentNullException(); } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData child in list) { - clientVersionEdges.Add(MapNonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(child)); + unionChanges.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(child)); } - return clientVersionEdges; + return unionChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_Edges MapNonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6(global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData data) { - IPageClientVersionDetailQuery_Node_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData descriptionChanged) { - returnValue = new PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + if (!descriptionChanged.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_DescriptionChanged_6(descriptionChanged.__typename ?? throw new global::System.ArgumentNullException(), descriptionChanged.Severity!.Value, descriptionChanged.Old, descriptionChanged.New); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData unionMemberAdded) { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } + if (!unionMemberAdded.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberAdded(unionMemberAdded.__typename ?? throw new global::System.ArgumentNullException(), unionMemberAdded.Severity!.Value, unionMemberAdded.TypeName ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData unionMemberRemoved) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + if (!unionMemberRemoved.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_UnionMemberRemoved(unionMemberRemoved.__typename ?? throw new global::System.ArgumentNullException(), unionMemberRemoved.Severity!.Value, unionMemberRemoved.TypeName ?? throw new global::System.ArgumentNullException()); } else { @@ -189084,48 +190562,114 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_ChangesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData child in list) { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + schemaChangeLogEntrys.Add(MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes(child)); } - return publishedClientVersions; + return schemaChangeLogEntrys; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes MapNonNullableIOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData directiveModifiedChange) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + if (!directiveModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_DirectiveModifiedChange(directiveModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), directiveModifiedChange.Severity!.Value, directiveModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_ChangesNonNullableArray(directiveModifiedChange.Changes)); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData enumModifiedChange) { - throw new global::System.NotSupportedException(); + if (!enumModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_EnumModifiedChange(enumModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), enumModifiedChange.Severity!.Value, enumModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_1NonNullableArray(enumModifiedChange.Changes)); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData inputObjectModifiedChange) + { + if (!inputObjectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - return returnValue; - } + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InputObjectModifiedChange(inputObjectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), inputObjectModifiedChange.Severity!.Value, inputObjectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_2NonNullableArray(inputObjectModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData interfaceModifiedChange) + { + if (!interfaceModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) - { - if (data is null) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_InterfaceModifiedChange(interfaceModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), interfaceModifiedChange.Severity!.Value, interfaceModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_3NonNullableArray(interfaceModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData objectModifiedChange) { - return null; + if (!objectModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ObjectModifiedChange(objectModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), objectModifiedChange.Severity!.Value, objectModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_4NonNullableArray(objectModifiedChange.Changes)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData scalarModifiedChange) + { + if (!scalarModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_ScalarModifiedChange(scalarModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), scalarModifiedChange.Severity!.Value, scalarModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(scalarModifiedChange.Changes)); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData typeSystemMemberAddedChange) + { + if (!typeSystemMemberAddedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberAddedChange(typeSystemMemberAddedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberAddedChange.Severity!.Value, typeSystemMemberAddedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData typeSystemMemberModifiedChange) + { + if (!typeSystemMemberModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberModifiedChange(typeSystemMemberModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberModifiedChange.Severity!.Value); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData typeSystemMemberRemovedChange) + { + if (!typeSystemMemberRemovedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_TypeSystemMemberRemovedChange(typeSystemMemberRemovedChange.__typename ?? throw new global::System.ArgumentNullException(), typeSystemMemberRemovedChange.Severity!.Value, typeSystemMemberRemovedChange.Coordinate ?? throw new global::System.ArgumentNullException()); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData unionModifiedChange) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + if (!unionModifiedChange.Severity.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Changes_UnionModifiedChange(unionModifiedChange.__typename ?? throw new global::System.ArgumentNullException(), unionModifiedChange.Severity!.Value, unionModifiedChange.Coordinate ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_6NonNullableArray(unionModifiedChange.Changes)); } else { @@ -189143,57 +190687,49 @@ public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperat // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class OnSchemaVersionValidationUpdatedResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public PageClientVersionDetailQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) + public OnSchemaVersionValidationUpdatedResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData onSchemaVersionValidationUpdate) { - Node = node; + OnSchemaVersionValidationUpdate = onSchemaVersionValidationUpdate; } - /// - /// Fetches an object given its ID. - /// - public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData OnSchemaVersionValidationUpdate { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new PageClientVersionDetailQueryResultInfo(Node); + return new OnSchemaVersionValidationUpdatedResultInfo(OnSchemaVersionValidationUpdate); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class CancelFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public SelectClientPromptQueryResultFactory() + public CancelFusionConfigurationPublishResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishResult); - public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public CancelFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is SelectClientPromptQueryResultInfo info) + if (dataInfo is CancelFusionConfigurationPublishResultInfo info) { - return new SelectClientPromptQueryResult(MapISelectClientPromptQuery_ApiById(info.ApiById)); + return new CancelFusionConfigurationPublishResult(MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(info.CancelFusionConfigurationComposition)); } - throw new global::System.ArgumentException("SelectClientPromptQueryResultInfo expected."); + throw new global::System.ArgumentException("CancelFusionConfigurationPublishResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? MapISelectClientPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData data) { - if (data is null) - { - return null; - } - - ISelectClientPromptQuery_ApiById returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition returnValue = default !; + if (data.__typename.Equals("CancelFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new SelectClientPromptQuery_ApiById_Api(MapISelectClientPromptQuery_ApiById_Clients(data.Clients)); + returnValue = new CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload(MapICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); } else { @@ -189203,48 +190739,36 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? MapISelectClientPromptQuery_ApiById_Clients(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? data) + private global::System.Collections.Generic.IReadOnlyList? MapICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { return null; } - ISelectClientPromptQuery_ApiById_Clients returnValue = default !; - if (data.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal)) - { - returnValue = new SelectClientPromptQuery_ApiById_Clients_ClientsConnection(MapISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(data.Edges), MapNonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); - } - else + var cancelFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData child in list) { - throw new global::System.NotSupportedException(); + cancelFusionConfigurationCompositionErrors.Add(MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors(child)); } - return returnValue; + return cancelFusionConfigurationCompositionErrors; } - private global::System.Collections.Generic.IReadOnlyList? MapISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData data) { - if (list is null) + ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - return null; + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - - var clientsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData child in list) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) { - clientsEdges.Add(MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges(child)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - - return clientsEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData data) - { - ISelectClientPromptQuery_ApiById_Clients_Edges returnValue = default !; - if (data.__typename.Equals("ClientsEdge", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) { - returnValue = new SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -189254,52 +190778,57 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - ISelectClientPromptQuery_ApiById_Clients_Edges_Node returnValue = default !; - if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) - { - returnValue = new SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapICreateClientCommandMutation_CreateClient_Client_Api(data.Api), MapICreateClientCommandMutation_CreateClient_Client_Versions(data.Versions)); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; + return Create(dataInfo, snapshot); } + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Api? MapICreateClientCommandMutation_CreateClient_Client_Api(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CancelFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CancelFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData cancelFusionConfigurationComposition) { - if (data is null) - { - return null; - } + CancelFusionConfigurationComposition = cancelFusionConfigurationComposition; + } - ICreateClientCommandMutation_CreateClient_Client_Api returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); - } - else - { - throw new global::System.NotSupportedException(); - } + public global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData CancelFusionConfigurationComposition { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; - return returnValue; + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CancelFusionConfigurationPublishResultInfo(CancelFusionConfigurationComposition); } + } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions? MapICreateClientCommandMutation_CreateClient_Client_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CommitFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public CommitFusionConfigurationPublishResultFactory() { - if (data is null) + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishResult); + + public CommitFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is CommitFusionConfigurationPublishResultInfo info) { - return null; + return new CommitFusionConfigurationPublishResult(MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(info.CommitFusionConfigurationPublish)); } - ICreateClientCommandMutation_CreateClient_Client_Versions returnValue = default !; - if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + throw new global::System.ArgumentException("CommitFusionConfigurationPublishResultInfo expected."); + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData data) + { + ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish returnValue = default !; + if (data.__typename.Equals("CommitFusionConfigurationPublishPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_ClientVersionConnection(MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload(MapICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_ErrorsNonNullableArray(data.Errors)); } else { @@ -189309,43 +190838,36 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + var commitFusionConfigurationPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData child in list) { - clientVersionEdges.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + commitFusionConfigurationPublishErrors.Add(MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors(child)); } - return clientVersionEdges; + return commitFusionConfigurationPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges returnValue = default !; - if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) - { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node returnValue = default !; - if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -189355,28 +190877,57 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + global::System.Object global::StrawberryShake.IOperationResultDataFactory.Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot) { - if (list is null) - { - throw new global::System.ArgumentNullException(); - } + return Create(dataInfo, snapshot); + } + } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CommitFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + { + public CommitFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData commitFusionConfigurationPublish) + { + CommitFusionConfigurationPublish = commitFusionConfigurationPublish; + } + + public global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData CommitFusionConfigurationPublish { get; } + public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); + public global::System.UInt64 Version => 0; + + public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) + { + return new CommitFusionConfigurationPublishResultInfo(CommitFusionConfigurationPublish); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class StartFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + { + public StartFusionConfigurationPublishResultFactory() + { + } + + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishResult); + + public StartFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + { + if (dataInfo is StartFusionConfigurationPublishResultInfo info) { - publishedClientVersions.Add(MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + return new StartFusionConfigurationPublishResult(MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(info.StartFusionConfigurationComposition)); } - return publishedClientVersions; + throw new global::System.ArgumentException("StartFusionConfigurationPublishResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo returnValue = default !; - if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + IStartFusionConfigurationPublish_StartFusionConfigurationComposition returnValue = default !; + if (data.__typename.Equals("StartFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + returnValue = new StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload(MapIStartFusionConfigurationPublish_StartFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); } else { @@ -189386,47 +190937,36 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage? MapICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + private global::System.Collections.Generic.IReadOnlyList? MapIStartFusionConfigurationPublish_StartFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { - if (data is null) + if (list is null) { return null; } - ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; - if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) - { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); - } - else + var startFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData child in list) { - throw new global::System.NotSupportedException(); + startFusionConfigurationCompositionErrors.Add(MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors(child)); } - return returnValue; + return startFusionConfigurationCompositionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo MapNonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData data) { - ICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new CreateClientCommandMutation_CreateClient_Client_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } - else + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) { - throw new global::System.NotSupportedException(); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo MapNonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) - { - ISelectClientPromptQuery_ApiById_Clients_PageInfo returnValue = default !; - if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) { - returnValue = new SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -189444,20 +190984,20 @@ public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationRe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class StartFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public SelectClientPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) + public StartFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData startFusionConfigurationComposition) { - ApiById = apiById; + StartFusionConfigurationComposition = startFusionConfigurationComposition; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData StartFusionConfigurationComposition { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new SelectClientPromptQueryResultInfo(ApiById); + return new StartFusionConfigurationPublishResultInfo(StartFusionConfigurationComposition); } } @@ -189535,6 +191075,10 @@ public BeginFusionConfigurationPublishResult Create(global::StrawberryShake.IOpe { returnValue = new global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData invalidSourceMetadataInputError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.BeginFusionConfigurationPublish_BeginFusionConfigurationPublish_Errors_InvalidSourceMetadataInputError(invalidSourceMetadataInputError.Message ?? throw new global::System.ArgumentNullException()); + } else { throw new global::System.NotSupportedException(); @@ -189797,15 +191341,15 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData schemaVersionChangeViolationError) { @@ -189823,28 +191367,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData child in list) { - mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + mcpFeatureCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; if (data.__typename.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(data.McpFeatureCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -189874,32 +191418,32 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData child in list) { - mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); + mcpFeatureCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); } return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData mcpFeatureCollectionValidationPrompt) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationPrompt.Errors), mcpFeatureCollectionValidationPrompt.Name ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData mcpFeatureCollectionValidationTool) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(mcpFeatureCollectionValidationTool.Errors), mcpFeatureCollectionValidationTool.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -189909,28 +191453,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData child in list) { - mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); + mcpFeatureCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); } return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData mcpFeatureCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError(mcpFeatureCollectionValidationDocumentError.Code, mcpFeatureCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), mcpFeatureCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(mcpFeatureCollectionValidationDocumentError.Locations)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData mcpFeatureCollectionValidationEntityValidationError) { @@ -189944,25 +191488,25 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData child in list) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; if (data.__typename.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_McpFeatureCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); @@ -189975,28 +191519,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData child in list) { - openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + openApiCollectionValidationCollections.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 returnValue = default !; if (data.__typename.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection(MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(data.OpenApiCollection), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(data.Entities ?? throw new global::System.ArgumentNullException())); } else { @@ -190026,32 +191570,32 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_EntitiesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData child in list) { - openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(child)); + openApiCollectionValidationEntitys.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(child)); } return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData openApiCollectionValidationEndpoint) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationEndpoint.Errors), openApiCollectionValidationEndpoint.HttpMethod ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationEndpoint.Route ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData openApiCollectionValidationModel) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(openApiCollectionValidationModel.Errors), openApiCollectionValidationModel.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -190061,28 +191605,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData child in list) { - openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(child)); + openApiCollectionValidationEntityErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(child)); } return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1(global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors? returnValue; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_1? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData openApiCollectionValidationDocumentError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(openApiCollectionValidationDocumentError.Locations)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError(openApiCollectionValidationDocumentError.Code, openApiCollectionValidationDocumentError.Message ?? throw new global::System.ArgumentNullException(), openApiCollectionValidationDocumentError.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(openApiCollectionValidationDocumentError.Locations)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData openApiCollectionValidationEntityValidationError) { @@ -190096,25 +191640,25 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData child in list) { - openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations returnValue = default !; + IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1 returnValue = default !; if (data.__typename.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal)) { returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_OpenApiCollectionValidationDocumentErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); @@ -190127,17 +191671,17 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? data) { if (data is null) { return null; } - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client returnValue = default !; if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -190147,28 +191691,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData child in list) { - persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries returnValue = default !; if (data.__typename.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_PersistedQueryValidationFailed(data.DeployedTags ?? throw new global::System.ArgumentNullException(), data.Message ?? throw new global::System.ArgumentNullException(), data.Hash ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(data.Errors ?? throw new global::System.ArgumentNullException())); } else { @@ -190178,28 +191722,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { throw new global::System.ArgumentNullException(); } - var persistedQueryErrors = new global::System.Collections.Generic.List(); + var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData child in list) { - persistedQueryErrors.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors returnValue = default !; if (data.__typename.Equals("PersistedQueryError", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_PersistedQueryError(data.Message ?? throw new global::System.ArgumentNullException(), data.Code, data.Path, MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(data.Locations)); } else { @@ -190209,28 +191753,28 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData child in list) { - persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) + private global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData data) { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations returnValue = default !; + IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations returnValue = default !; if (data.__typename.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal)) { - returnValue = new OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); + returnValue = new OnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations_PersistedQueryErrorLocation(data.Column ?? throw new global::System.ArgumentNullException(), data.Line ?? throw new global::System.ArgumentNullException()); } else { @@ -191252,7 +192796,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } else { @@ -191283,23 +192827,23 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_1? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_1(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_SchemaChangeViolationError(schemaChangeViolationError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ChangesNonNullableArray(schemaChangeViolationError.Changes)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData invalidGraphQLSchemaError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } else { @@ -191447,7 +192991,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); } else { @@ -191478,7 +193022,7 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_1(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else { @@ -191509,7 +193053,15 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_4? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData persistedQueryValidationError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_PersistedQueryValidationError_2(persistedQueryValidationError.Message ?? throw new global::System.ArgumentNullException(), MapIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(persistedQueryValidationError.Client), MapNonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(persistedQueryValidationError.Queries)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(mcpFeatureCollectionValidationError.Collections)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(openApiCollectionValidationError.Collections)); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData schemaChangeViolationError) { @@ -191542,14 +193094,6 @@ public OnFusionConfigurationPublishingTaskChangedResult Create(global::Strawberr { returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_InvalidGraphQLSchemaError_1(invalidGraphQLSchemaError.__typename ?? throw new global::System.ArgumentNullException(), invalidGraphQLSchemaError.Message ?? throw new global::System.ArgumentNullException(), MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(invalidGraphQLSchemaError.Errors)); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData openApiCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_OpenApiCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(openApiCollectionValidationError.Collections)); - } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData mcpFeatureCollectionValidationError) - { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.OnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_McpFeatureCollectionValidationError_2(MapNonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(mcpFeatureCollectionValidationError.Collections)); - } else { throw new global::System.NotSupportedException(); @@ -191585,30 +193129,30 @@ public OnFusionConfigurationPublishingTaskChangedResultInfo(global::ChilliCream. // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class ValidateFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CancelFusionConfigurationPublishResultFactory() + public ValidateFusionConfigurationPublishResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublishResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishResult); - public CancelFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public ValidateFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CancelFusionConfigurationPublishResultInfo info) + if (dataInfo is ValidateFusionConfigurationPublishResultInfo info) { - return new CancelFusionConfigurationPublishResult(MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(info.CancelFusionConfigurationComposition)); + return new ValidateFusionConfigurationPublishResult(MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(info.ValidateFusionConfigurationComposition)); } - throw new global::System.ArgumentException("CancelFusionConfigurationPublishResultInfo expected."); + throw new global::System.ArgumentException("ValidateFusionConfigurationPublishResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData data) { - ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition returnValue = default !; - if (data.__typename.Equals("CancelFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) + IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition returnValue = default !; + if (data.__typename.Equals("ValidateFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) { - returnValue = new CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_CancelFusionConfigurationCompositionPayload(MapICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); + returnValue = new ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload(MapIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); } else { @@ -191618,36 +193162,36 @@ public CancelFusionConfigurationPublishResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var cancelFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData child in list) + var validateFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData child in list) { - cancelFusionConfigurationCompositionErrors.Add(MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors(child)); + validateFusionConfigurationCompositionErrors.Add(MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors(child)); } - return cancelFusionConfigurationCompositionErrors; + return validateFusionConfigurationCompositionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors MapNonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData data) { - ICancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors? returnValue; + IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors? returnValue; if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); } else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CancelFusionConfigurationPublish_CancelFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); } else { @@ -191665,49 +193209,54 @@ public CancelFusionConfigurationPublishResult Create(global::StrawberryShake.IOp // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class ValidateFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CancelFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData cancelFusionConfigurationComposition) + public ValidateFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData validateFusionConfigurationComposition) { - CancelFusionConfigurationComposition = cancelFusionConfigurationComposition; + ValidateFusionConfigurationComposition = validateFusionConfigurationComposition; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData CancelFusionConfigurationComposition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData ValidateFusionConfigurationComposition { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CancelFusionConfigurationPublishResultInfo(CancelFusionConfigurationComposition); + return new ValidateFusionConfigurationPublishResultInfo(ValidateFusionConfigurationComposition); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectMockSchemaPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public CommitFusionConfigurationPublishResultFactory() + public SelectMockSchemaPromptQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublishResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryResult); - public CommitFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is CommitFusionConfigurationPublishResultInfo info) + if (dataInfo is SelectMockSchemaPromptQueryResultInfo info) { - return new CommitFusionConfigurationPublishResult(MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(info.CommitFusionConfigurationPublish)); + return new SelectMockSchemaPromptQueryResult(MapISelectMockSchemaPromptQuery_ApiById(info.ApiById)); } - throw new global::System.ArgumentException("CommitFusionConfigurationPublishResultInfo expected."); + throw new global::System.ArgumentException("SelectMockSchemaPromptQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? MapISelectMockSchemaPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish returnValue = default !; - if (data.__typename.Equals("CommitFusionConfigurationPublishPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_CommitFusionConfigurationPublishPayload(MapICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_ErrorsNonNullableArray(data.Errors)); + return null; + } + + ISelectMockSchemaPromptQuery_ApiById returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectMockSchemaPromptQuery_ApiById_Api(MapISelectMockSchemaPromptQuery_ApiById_MockSchemas(data.MockSchemas)); } else { @@ -191717,36 +193266,108 @@ public CommitFusionConfigurationPublishResult Create(global::StrawberryShake.IOp return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MapISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? data) + { + if (data is null) + { + return null; + } + + ISelectMockSchemaPromptQuery_ApiById_MockSchemas returnValue = default !; + if (data.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(MapISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(data.Edges), MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var commitFusionConfigurationPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData child in list) + var mockSchemasEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData child in list) { - commitFusionConfigurationPublishErrors.Add(MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors(child)); + mockSchemasEdges.Add(MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(child)); } - return commitFusionConfigurationPublishErrors; + return mockSchemasEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors MapNonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData data) { - ICommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges returnValue = default !; + if (data.__typename.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData data) + { + ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node returnValue = default !; + if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.CommitFusionConfigurationPublish_CommitFusionConfigurationPublish_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + { + ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + { + ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; + if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -191764,49 +193385,214 @@ public CommitFusionConfigurationPublishResult Create(global::StrawberryShake.IOp // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SelectMockSchemaPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public CommitFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData commitFusionConfigurationPublish) + public SelectMockSchemaPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) { - CommitFusionConfigurationPublish = commitFusionConfigurationPublish; + ApiById = apiById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData CommitFusionConfigurationPublish { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new CommitFusionConfigurationPublishResultInfo(CommitFusionConfigurationPublish); + return new SelectMockSchemaPromptQueryResultInfo(ApiById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class PageClientVersionDetailQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public StartFusionConfigurationPublishResultFactory() + public PageClientVersionDetailQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublishResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQueryResult); - public StartFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public PageClientVersionDetailQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is StartFusionConfigurationPublishResultInfo info) + if (dataInfo is PageClientVersionDetailQueryResultInfo info) { - return new StartFusionConfigurationPublishResult(MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(info.StartFusionConfigurationComposition)); + return new PageClientVersionDetailQueryResult(MapIPageClientVersionDetailQuery_Node(info.Node)); } - throw new global::System.ArgumentException("StartFusionConfigurationPublishResultInfo expected."); + throw new global::System.ArgumentException("PageClientVersionDetailQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node? MapIPageClientVersionDetailQuery_Node(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? data) { - IStartFusionConfigurationPublish_StartFusionConfigurationComposition returnValue = default !; - if (data.__typename.Equals("StartFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new StartFusionConfigurationPublish_StartFusionConfigurationComposition_StartFusionConfigurationCompositionPayload(MapIStartFusionConfigurationPublish_StartFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); + return null; + } + + IPageClientVersionDetailQuery_Node? returnValue; + if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiData api) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Api(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData apiDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ApiDocument(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData apiKey) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ApiKey(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientData client) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Client(MapIPageClientVersionDetailQuery_Node_Versions(client.Versions)); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData clientChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData clientDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData clientVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_ClientVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData coordinateClientUsageMetrics) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_CoordinateClientUsageMetrics(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData environment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Environment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData fusionConfigurationChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_FusionConfigurationChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData fusionConfigurationDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_FusionConfigurationDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData graphQLDirectiveArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLDirectiveArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData graphQLDirectiveDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLDirectiveDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData graphQLEnumTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLEnumTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData graphQLEnumValueDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLEnumValueDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData graphQLInputObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInputObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData graphQLInputObjectTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInputObjectTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData graphQLInterfaceFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData graphQLInterfaceFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData graphQLInterfaceTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLInterfaceTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData graphQLObjectFieldArgumentDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLObjectFieldArgumentDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData graphQLObjectFieldDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLObjectFieldDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData graphQLScalarTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLScalarTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData graphQLUnionTypeDefinition) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_GraphQLUnionTypeDefinition(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.GroupData @group) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Group(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData mcpFeatureCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData mcpFeatureCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData mcpFeatureCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData mcpFeatureCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_McpFeatureCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData openApiCollection) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollection(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData openApiCollectionChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData openApiCollectionDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData openApiCollectionVersion) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OpenApiCollectionVersion(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData organization) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Organization(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData organizationMember) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_OrganizationMember(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData schemaChangeLog) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_SchemaChangeLog(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData schemaDeployment) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_SchemaDeployment(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.StageData stage) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Stage(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UserData user) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_User(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData workspace) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_Workspace(); + } + else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData workspaceDocument) + { + returnValue = new global::ChilliCream.Nitro.CommandLine.Client.PageClientVersionDetailQuery_Node_WorkspaceDocument(); } else { @@ -191816,36 +193602,129 @@ public StartFusionConfigurationPublishResult Create(global::StrawberryShake.IOpe return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIStartFusionConfigurationPublish_StartFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions? MapIPageClientVersionDetailQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + { + if (data is null) + { + return null; + } + + IPageClientVersionDetailQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new PageClientVersionDetailQuery_Node_Versions_ClientVersionConnection(MapNonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException()), MapIPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(data.Edges)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_PageInfo MapNonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IPageClientVersionDetailQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new PageClientVersionDetailQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var startFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData child in list) + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) { - startFusionConfigurationCompositionErrors.Add(MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors(child)); + clientVersionEdges.Add(MapNonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(child)); } - return startFusionConfigurationCompositionErrors; + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors MapNonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.IPageClientVersionDetailQuery_Node_Versions_Edges MapNonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) { - IStartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + IPageClientVersionDetailQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new PageClientVersionDetailQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + { + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.StartFusionConfigurationPublish_StartFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + { + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); + } + + return publishedClientVersions; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + { + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + { + if (data is null) + { + return null; + } + + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -191863,49 +193742,57 @@ public StartFusionConfigurationPublishResult Create(global::StrawberryShake.IOpe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class PageClientVersionDetailQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public StartFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData startFusionConfigurationComposition) + public PageClientVersionDetailQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? node) { - StartFusionConfigurationComposition = startFusionConfigurationComposition; + Node = node; } - public global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData StartFusionConfigurationComposition { get; } + /// + /// Fetches an object given its ID. + /// + public global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Node { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new StartFusionConfigurationPublishResultInfo(StartFusionConfigurationComposition); + return new PageClientVersionDetailQueryResultInfo(Node); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublishResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectClientPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public ValidateFusionConfigurationPublishResultFactory() + public SelectClientPromptQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublishResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQueryResult); - public ValidateFusionConfigurationPublishResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public SelectClientPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is ValidateFusionConfigurationPublishResultInfo info) + if (dataInfo is SelectClientPromptQueryResultInfo info) { - return new ValidateFusionConfigurationPublishResult(MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(info.ValidateFusionConfigurationComposition)); + return new SelectClientPromptQueryResult(MapISelectClientPromptQuery_ApiById(info.ApiById)); } - throw new global::System.ArgumentException("ValidateFusionConfigurationPublishResultInfo expected."); + throw new global::System.ArgumentException("SelectClientPromptQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById? MapISelectClientPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { - IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition returnValue = default !; - if (data.__typename.Equals("ValidateFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal)) + if (data is null) { - returnValue = new ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ValidateFusionConfigurationCompositionPayload(MapIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ErrorsNonNullableArray(data.Errors)); + return null; + } + + ISelectClientPromptQuery_ApiById returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectClientPromptQuery_ApiById_Api(MapISelectClientPromptQuery_ApiById_Clients(data.Clients)); } else { @@ -191915,36 +193802,230 @@ public ValidateFusionConfigurationPublishResult Create(global::StrawberryShake.I return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_ErrorsNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients? MapISelectClientPromptQuery_ApiById_Clients(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? data) + { + if (data is null) + { + return null; + } + + ISelectClientPromptQuery_ApiById_Clients returnValue = default !; + if (data.__typename.Equals("ClientsConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectClientPromptQuery_ApiById_Clients_ClientsConnection(MapISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(data.Edges), MapNonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var validateFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData child in list) + var clientsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData child in list) { - validateFusionConfigurationCompositionErrors.Add(MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors(child)); + clientsEdges.Add(MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges(child)); } - return validateFusionConfigurationCompositionErrors; + return clientsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors MapNonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors(global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData data) { - IValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors? returnValue; - if (data is global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData unauthorizedOperation) + ISelectClientPromptQuery_ApiById_Clients_Edges returnValue = default !; + if (data.__typename.Equals("ClientsEdge", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_UnauthorizedOperation(unauthorizedOperation.__typename ?? throw new global::System.ArgumentNullException(), unauthorizedOperation.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectClientPromptQuery_ApiById_Clients_Edges_ClientsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData fusionConfigurationRequestNotFoundError) + else { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_FusionConfigurationRequestNotFoundError(fusionConfigurationRequestNotFoundError.__typename ?? throw new global::System.ArgumentNullException(), fusionConfigurationRequestNotFoundError.Message ?? throw new global::System.ArgumentNullException()); + throw new global::System.NotSupportedException(); } - else if (data is global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData invalidProcessingStateTransitionError) + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_Edges_Node MapNonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientData data) + { + ISelectClientPromptQuery_ApiById_Clients_Edges_Node returnValue = default !; + if (data.__typename.Equals("Client", global::System.StringComparison.Ordinal)) { - returnValue = new global::ChilliCream.Nitro.CommandLine.Client.ValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition_Errors_InvalidProcessingStateTransitionError(invalidProcessingStateTransitionError.__typename ?? throw new global::System.ArgumentNullException(), invalidProcessingStateTransitionError.Message ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectClientPromptQuery_ApiById_Clients_Edges_Node_Client(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), MapIShowClientCommandQuery_Node_Api_1(data.Api), MapIShowClientCommandQuery_Node_Versions(data.Versions)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Api_1? MapIShowClientCommandQuery_Node_Api_1(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + { + if (data is null) + { + return null; + } + + IShowClientCommandQuery_Node_Api_1 returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Api_Api(data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions? MapIShowClientCommandQuery_Node_Versions(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? data) + { + if (data is null) + { + return null; + } + + IShowClientCommandQuery_Node_Versions returnValue = default !; + if (data.__typename.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_ClientVersionConnection(MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(data.Edges), MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList? MapIShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + return null; + } + + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData child in list) + { + clientVersionEdges.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); + } + + return clientVersionEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges MapNonNullableIShowClientCommandQuery_Node_Versions_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData data) + { + IShowClientCommandQuery_Node_Versions_Edges returnValue = default !; + if (data.__typename.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_ClientVersionEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData data) + { + IShowClientCommandQuery_Node_Versions_Edges_Node returnValue = default !; + if (data.__typename.Equals("ClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_ClientVersion(data.Id ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), data.Tag ?? throw new global::System.ArgumentNullException(), MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(data.PublishedTo ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::System.Collections.Generic.IReadOnlyList MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + { + if (list is null) + { + throw new global::System.ArgumentNullException(); + } + + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData child in list) + { + publishedClientVersions.Add(MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); + } + + return publishedClientVersions; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo MapNonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData data) + { + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo returnValue = default !; + if (data.__typename.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_PublishedClientVersion(MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(data.Stage)); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage? MapIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::ChilliCream.Nitro.CommandLine.Client.State.StageData? data) + { + if (data is null) + { + return null; + } + + IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage returnValue = default !; + if (data.__typename.Equals("Stage", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage_Stage(data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowClientCommandQuery_Node_Versions_PageInfo MapNonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + IShowClientCommandQuery_Node_Versions_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowClientCommandQuery_Node_Versions_PageInfo_PageInfo(data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISelectClientPromptQuery_ApiById_Clients_PageInfo MapNonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + ISelectClientPromptQuery_ApiById_Clients_PageInfo returnValue = default !; + if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) + { + returnValue = new SelectClientPromptQuery_ApiById_Clients_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -191962,54 +194043,54 @@ public ValidateFusionConfigurationPublishResult Create(global::StrawberryShake.I // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublishResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SelectClientPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public ValidateFusionConfigurationPublishResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData validateFusionConfigurationComposition) + public SelectClientPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) { - ValidateFusionConfigurationComposition = validateFusionConfigurationComposition; + ApiById = apiById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData ValidateFusionConfigurationComposition { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new ValidateFusionConfigurationPublishResultInfo(ValidateFusionConfigurationComposition); + return new SelectClientPromptQueryResultInfo(ApiById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMcpFeatureCollectionPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectApiPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public SelectMcpFeatureCollectionPromptQueryResultFactory() + public SelectApiPromptQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQueryResult); - public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public SelectApiPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is SelectMcpFeatureCollectionPromptQueryResultInfo info) + if (dataInfo is SelectApiPromptQueryResultInfo info) { - return new SelectMcpFeatureCollectionPromptQueryResult(MapISelectMcpFeatureCollectionPromptQuery_ApiById(info.ApiById)); + return new SelectApiPromptQueryResult(MapISelectApiPromptQuery_WorkspaceById(info.WorkspaceById)); } - throw new global::System.ArgumentException("SelectMcpFeatureCollectionPromptQueryResultInfo expected."); + throw new global::System.ArgumentException("SelectApiPromptQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById? MapISelectMcpFeatureCollectionPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById? MapISelectApiPromptQuery_WorkspaceById(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { if (data is null) { return null; } - ISelectMcpFeatureCollectionPromptQuery_ApiById returnValue = default !; - if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) + ISelectApiPromptQuery_WorkspaceById returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_Api(MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(data.McpFeatureCollections)); + returnValue = new SelectApiPromptQuery_WorkspaceById_Workspace(MapISelectApiPromptQuery_WorkspaceById_Apis(data.Apis)); } else { @@ -192019,17 +194100,17 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections? MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis? MapISelectApiPromptQuery_WorkspaceById_Apis(global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? data) { if (data is null) { return null; } - ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections returnValue = default !; - if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal)) + ISelectApiPromptQuery_WorkspaceById_Apis returnValue = default !; + if (data.__typename.Equals("ApisConnection", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(data.Edges), MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_ApisConnection(MapISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(data.Edges), MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -192039,28 +194120,28 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData child in list) + var apisEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData child in list) { - apiMcpFeatureCollectionsEdges.Add(MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(child)); + apisEdges.Add(MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(child)); } - return apiMcpFeatureCollectionsEdges; + return apisEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData data) { - ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges returnValue = default !; - if (data.__typename.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal)) + ISelectApiPromptQuery_WorkspaceById_Apis_Edges returnValue = default !; + if (data.__typename.Equals("ApisEdge", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); + returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_Edges_ApisEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -192070,12 +194151,12 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData data) { - ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node returnValue = default !; - if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) + ISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node returnValue = default !; + if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_Edges_Node_Api(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.Path ?? throw new global::System.ArgumentNullException(), MapIShowApiCommandQuery_Node_Workspace_1(data.Workspace), MapNonNullableIShowApiCommandQuery_Node_Settings(data.Settings ?? throw new global::System.ArgumentNullException())); } else { @@ -192085,12 +194166,62 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Workspace_1? MapIShowApiCommandQuery_Node_Workspace_1(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? data) { - ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo returnValue = default !; + if (data is null) + { + return null; + } + + IShowApiCommandQuery_Node_Workspace_1 returnValue = default !; + if (data.__typename.Equals("Workspace", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Workspace_Workspace(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings MapNonNullableIShowApiCommandQuery_Node_Settings(global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData data) + { + IShowApiCommandQuery_Node_Settings returnValue = default !; + if (data.__typename.Equals("ApiSettings", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Settings_ApiSettings(MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(data.SchemaRegistry ?? throw new global::System.ArgumentNullException())); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.IShowApiCommandQuery_Node_Settings_SchemaRegistry MapNonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData data) + { + IShowApiCommandQuery_Node_Settings_SchemaRegistry returnValue = default !; + if (data.__typename.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal)) + { + returnValue = new ShowApiCommandQuery_Node_Settings_SchemaRegistry_SchemaRegistrySettings(data.TreatDangerousAsBreaking ?? throw new global::System.ArgumentNullException(), data.AllowBreakingSchemaChanges ?? throw new global::System.ArgumentNullException()); + } + else + { + throw new global::System.NotSupportedException(); + } + + return returnValue; + } + + private global::ChilliCream.Nitro.CommandLine.Client.ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo MapNonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + { + ISelectApiPromptQuery_WorkspaceById_Apis_PageInfo returnValue = default !; if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new SelectApiPromptQuery_WorkspaceById_Apis_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -192108,54 +194239,54 @@ public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShak // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMcpFeatureCollectionPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SelectApiPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public SelectMcpFeatureCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) + public SelectApiPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspaceById) { - ApiById = apiById; + WorkspaceById = workspaceById; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? ApiById { get; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? WorkspaceById { get; } public global::System.Collections.Generic.IReadOnlyCollection EntityIds => global::System.Array.Empty(); public global::System.UInt64 Version => 0; public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new SelectMcpFeatureCollectionPromptQueryResultInfo(ApiById); + return new SelectApiPromptQueryResultInfo(WorkspaceById); } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultDataFactoryGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory + public partial class SelectMcpFeatureCollectionPromptQueryResultFactory : global::StrawberryShake.IOperationResultDataFactory { - public SelectMockSchemaPromptQueryResultFactory() + public SelectMcpFeatureCollectionPromptQueryResultFactory() { } - global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQueryResult); + global::System.Type global::StrawberryShake.IOperationResultDataFactory.ResultType => typeof(global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQueryResult); - public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) + public SelectMcpFeatureCollectionPromptQueryResult Create(global::StrawberryShake.IOperationResultDataInfo dataInfo, global::StrawberryShake.IEntityStoreSnapshot? snapshot = null) { - if (dataInfo is SelectMockSchemaPromptQueryResultInfo info) + if (dataInfo is SelectMcpFeatureCollectionPromptQueryResultInfo info) { - return new SelectMockSchemaPromptQueryResult(MapISelectMockSchemaPromptQuery_ApiById(info.ApiById)); + return new SelectMcpFeatureCollectionPromptQueryResult(MapISelectMcpFeatureCollectionPromptQuery_ApiById(info.ApiById)); } - throw new global::System.ArgumentException("SelectMockSchemaPromptQueryResultInfo expected."); + throw new global::System.ArgumentException("SelectMcpFeatureCollectionPromptQueryResultInfo expected."); } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById? MapISelectMockSchemaPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById? MapISelectMcpFeatureCollectionPromptQuery_ApiById(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? data) { if (data is null) { return null; } - ISelectMockSchemaPromptQuery_ApiById returnValue = default !; + ISelectMcpFeatureCollectionPromptQuery_ApiById returnValue = default !; if (data.__typename.Equals("Api", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMockSchemaPromptQuery_ApiById_Api(MapISelectMockSchemaPromptQuery_ApiById_MockSchemas(data.MockSchemas)); + returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_Api(MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(data.McpFeatureCollections)); } else { @@ -192165,17 +194296,17 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas? MapISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections? MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? data) { if (data is null) { return null; } - ISelectMockSchemaPromptQuery_ApiById_MockSchemas returnValue = default !; - if (data.__typename.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal)) + ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections returnValue = default !; + if (data.__typename.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_MockSchemasConnection(MapISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(data.Edges), MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); + returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_ApiMcpFeatureCollectionsConnection(MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(data.Edges), MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(data.PageInfo ?? throw new global::System.ArgumentNullException())); } else { @@ -192185,58 +194316,28 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::System.Collections.Generic.IReadOnlyList? MapISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) + private global::System.Collections.Generic.IReadOnlyList? MapISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::System.Collections.Generic.IReadOnlyList? list) { if (list is null) { return null; } - var mockSchemasEdges = new global::System.Collections.Generic.List(); - foreach (global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData child in list) - { - mockSchemasEdges.Add(MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(child)); - } - - return mockSchemasEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData data) - { - ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges returnValue = default !; - if (data.__typename.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal)) - { - returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_MockSchemasEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); - } - else - { - throw new global::System.NotSupportedException(); - } - - return returnValue; - } - - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData data) - { - ISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node returnValue = default !; - if (data.__typename.Equals("MockSchema", global::System.StringComparison.Ordinal)) - { - returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node_MockSchema(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException(), data.CreatedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(data.CreatedBy ?? throw new global::System.ArgumentNullException()), data.ModifiedAt ?? throw new global::System.ArgumentNullException(), MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(data.ModifiedBy ?? throw new global::System.ArgumentNullException()), data.DownstreamUrl ?? throw new global::System.ArgumentNullException(), data.Url ?? throw new global::System.ArgumentNullException()); - } - else + var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); + foreach (global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData child in list) { - throw new global::System.NotSupportedException(); + apiMcpFeatureCollectionsEdges.Add(MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(child)); } - return returnValue; + return apiMcpFeatureCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData data) { - ICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges returnValue = default !; + if (data.__typename.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_CreatedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_ApiMcpFeatureCollectionsEdge(data.Cursor ?? throw new global::System.ArgumentNullException(), MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(data.Node ?? throw new global::System.ArgumentNullException())); } else { @@ -192246,12 +194347,12 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy MapNonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData data) { - ICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy returnValue = default !; - if (data.__typename.Equals("UserInfo", global::System.StringComparison.Ordinal)) + ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node returnValue = default !; + if (data.__typename.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal)) { - returnValue = new CreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy_UserInfo(data.Username ?? throw new global::System.ArgumentNullException()); + returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node_McpFeatureCollection(data.Id ?? throw new global::System.ArgumentNullException(), data.Name ?? throw new global::System.ArgumentNullException()); } else { @@ -192261,12 +194362,12 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati return returnValue; } - private global::ChilliCream.Nitro.CommandLine.Client.ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo MapNonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) + private global::ChilliCream.Nitro.CommandLine.Client.ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo MapNonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData data) { - ISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo returnValue = default !; + ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo returnValue = default !; if (data.__typename.Equals("PageInfo", global::System.StringComparison.Ordinal)) { - returnValue = new SelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); + returnValue = new SelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo_PageInfo(data.HasPreviousPage ?? throw new global::System.ArgumentNullException(), data.HasNextPage ?? throw new global::System.ArgumentNullException(), data.EndCursor, data.StartCursor); } else { @@ -192284,9 +194385,9 @@ public SelectMockSchemaPromptQueryResult Create(global::StrawberryShake.IOperati // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInfoGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo + public partial class SelectMcpFeatureCollectionPromptQueryResultInfo : global::StrawberryShake.IOperationResultDataInfo { - public SelectMockSchemaPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) + public SelectMcpFeatureCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? apiById) { ApiById = apiById; } @@ -192297,7 +194398,7 @@ public SelectMockSchemaPromptQueryResultInfo(global::ChilliCream.Nitro.CommandLi public global::StrawberryShake.IOperationResultDataInfo WithVersion(global::System.UInt64 version) { - return new SelectMockSchemaPromptQueryResultInfo(ApiById); + return new SelectMcpFeatureCollectionPromptQueryResultInfo(ApiById); } } @@ -192449,79 +194550,78 @@ public SelectOpenApiCollectionPromptQueryResultInfo(global::ChilliCream.Nitro.Co // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICreateApiKeyInputInfo + internal interface IUploadFusionSubgraphInputInfo { - global::System.Boolean IsNameSet { get; } + global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsPermissionScopeSet { get; } + global::System.Boolean IsArchiveSet { get; } - global::System.Boolean IsRoleAssigmentConditionSet { get; } + global::System.Boolean IsSourceSet { get; } - global::System.Boolean IsWorkspaceIdSet { get; } + global::System.Boolean IsTagSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IApiKeyPermissionScopeInputInfo + internal interface ISourceMetadataInputInfo { - global::System.Boolean IsApiIdSet { get; } - - global::System.Boolean IsWorkspaceIdSet { get; } + global::System.Boolean IsGithubSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IRoleAssigmentConditionInputInfo + internal interface IGitHubSourceMetadataInputInfo { - global::System.Boolean IsStageAuthorizationConditionSet { get; } - } + global::System.Boolean IsActorSet { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IRoleAssignmentStageAuthorizationConditionInputInfo - { - global::System.Boolean IsNameSet { get; } - } + global::System.Boolean IsCommitHashSet { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IDeleteApiKeyInputInfo - { - global::System.Boolean IsApiKeyIdSet { get; } - } + global::System.Boolean IsJobIdSet { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUpdateApiSettingsInputInfo - { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsRepositoryUrlSet { get; } - global::System.Boolean IsSettingsSet { get; } + global::System.Boolean IsRunIdSet { get; } + + global::System.Boolean IsRunNumberSet { get; } + + global::System.Boolean IsWorkflowNameSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IPartialApiSettingsInputInfo + internal interface IUnpublishClientInputInfo { - global::System.Boolean IsSchemaRegistrySet { get; } + global::System.Boolean IsClientIdSet { get; } + + global::System.Boolean IsStageSet { get; } + + global::System.Boolean IsTagSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IPartialSchemaRegistrySettingsInputInfo + internal interface IUploadClientInputInfo { - global::System.Boolean IsAllowBreakingSchemaChangesSet { get; } + global::System.Boolean IsClientIdSet { get; } - global::System.Boolean IsTreatDangerousAsBreakingSet { get; } + global::System.Boolean IsOperationsSet { get; } + + global::System.Boolean IsSourceSet { get; } + + global::System.Boolean IsTagSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICreateClientInputInfo + internal interface IValidateClientInputInfo { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsClientIdSet { get; } - global::System.Boolean IsNameSet { get; } + global::System.Boolean IsOperationsSet { get; } + + global::System.Boolean IsSourceSet { get; } + + global::System.Boolean IsStageSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator @@ -192539,6 +194639,8 @@ internal interface IPublishClientInputInfo global::System.Boolean IsForceSet { get; } + global::System.Boolean IsSourceSet { get; } + global::System.Boolean IsStageSet { get; } global::System.Boolean IsTagSet { get; } @@ -192548,152 +194650,165 @@ internal interface IPublishClientInputInfo // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUnpublishClientInputInfo + internal interface ICreateClientInputInfo { - global::System.Boolean IsClientIdSet { get; } - - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsNameSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUploadClientInputInfo + internal interface IUpdateApiSettingsInputInfo { - global::System.Boolean IsClientIdSet { get; } - - global::System.Boolean IsOperationsSet { get; } + global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsSettingsSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IValidateClientInputInfo + internal interface IPartialApiSettingsInputInfo { - global::System.Boolean IsClientIdSet { get; } + global::System.Boolean IsSchemaRegistrySet { get; } + } - global::System.Boolean IsOperationsSet { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IPartialSchemaRegistrySettingsInputInfo + { + global::System.Boolean IsAllowBreakingSchemaChangesSet { get; } - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsTreatDangerousAsBreakingSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUploadFusionSubgraphInputInfo + internal interface IUpdateStagesInputInfo { global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsArchiveSet { get; } - - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsUpdatedStagesSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICreateMcpFeatureCollectionInputInfo + internal interface IStageUpdateInputInfo { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsConditionsSet { get; } + + global::System.Boolean IsDisplayNameSet { get; } global::System.Boolean IsNameSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IDeleteMcpFeatureCollectionByIdInputInfo + internal interface IStageConditionUpdateInputInfo { - global::System.Boolean IsMcpFeatureCollectionIdSet { get; } + global::System.Boolean IsAfterStageSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IPublishMcpFeatureCollectionInputInfo + internal interface ICreateApiKeyInputInfo { - global::System.Boolean IsForceSet { get; } - - global::System.Boolean IsMcpFeatureCollectionIdSet { get; } + global::System.Boolean IsNameSet { get; } - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsPermissionScopeSet { get; } - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsRoleAssigmentConditionSet { get; } - global::System.Boolean IsWaitForApprovalSet { get; } + global::System.Boolean IsWorkspaceIdSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUploadMcpFeatureCollectionInputInfo + internal interface IApiKeyPermissionScopeInputInfo { - global::System.Boolean IsCollectionSet { get; } - - global::System.Boolean IsMcpFeatureCollectionIdSet { get; } + global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsWorkspaceIdSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IValidateMcpFeatureCollectionInputInfo + internal interface IRoleAssigmentConditionInputInfo { - global::System.Boolean IsCollectionSet { get; } - - global::System.Boolean IsMcpFeatureCollectionIdSet { get; } - - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsStageAuthorizationConditionSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICreateOpenApiCollectionInputInfo + internal interface IRoleAssignmentStageAuthorizationConditionInputInfo { - global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsNameSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IDeleteOpenApiCollectionByIdInputInfo + internal interface IDeleteApiKeyInputInfo { - global::System.Boolean IsOpenApiCollectionIdSet { get; } + global::System.Boolean IsApiKeyIdSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IPublishOpenApiCollectionInputInfo + internal interface IUploadMcpFeatureCollectionInputInfo { - global::System.Boolean IsForceSet { get; } + global::System.Boolean IsCollectionSet { get; } - global::System.Boolean IsOpenApiCollectionIdSet { get; } + global::System.Boolean IsMcpFeatureCollectionIdSet { get; } - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsSourceSet { get; } global::System.Boolean IsTagSet { get; } - - global::System.Boolean IsWaitForApprovalSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUploadOpenApiCollectionInputInfo + internal interface IValidateMcpFeatureCollectionInputInfo { global::System.Boolean IsCollectionSet { get; } - global::System.Boolean IsOpenApiCollectionIdSet { get; } + global::System.Boolean IsMcpFeatureCollectionIdSet { get; } - global::System.Boolean IsTagSet { get; } + global::System.Boolean IsSourceSet { get; } + + global::System.Boolean IsStageSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IValidateOpenApiCollectionInputInfo + internal interface IDeleteMcpFeatureCollectionByIdInputInfo { - global::System.Boolean IsCollectionSet { get; } + global::System.Boolean IsMcpFeatureCollectionIdSet { get; } + } - global::System.Boolean IsOpenApiCollectionIdSet { get; } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface ICreateMcpFeatureCollectionInputInfo + { + global::System.Boolean IsApiIdSet { get; } + + global::System.Boolean IsNameSet { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IPublishMcpFeatureCollectionInputInfo + { + global::System.Boolean IsForceSet { get; } + + global::System.Boolean IsMcpFeatureCollectionIdSet { get; } + + global::System.Boolean IsSourceSet { get; } global::System.Boolean IsStageSet { get; } + + global::System.Boolean IsTagSet { get; } + + global::System.Boolean IsWaitForApprovalSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator @@ -192714,66 +194829,61 @@ internal interface IRevokePersonalAccessTokenInputInfo // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IPublishSchemaInputInfo + internal interface IUploadOpenApiCollectionInputInfo { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsCollectionSet { get; } - global::System.Boolean IsForceSet { get; } + global::System.Boolean IsOpenApiCollectionIdSet { get; } - global::System.Boolean IsStageSet { get; } + global::System.Boolean IsSourceSet { get; } global::System.Boolean IsTagSet { get; } - - global::System.Boolean IsWaitForApprovalSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUploadSchemaInputInfo + internal interface IPublishOpenApiCollectionInputInfo { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsForceSet { get; } - global::System.Boolean IsSchemaSet { get; } + global::System.Boolean IsOpenApiCollectionIdSet { get; } + + global::System.Boolean IsSourceSet { get; } + + global::System.Boolean IsStageSet { get; } global::System.Boolean IsTagSet { get; } + + global::System.Boolean IsWaitForApprovalSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IValidateSchemaInputInfo + internal interface IValidateOpenApiCollectionInputInfo { - global::System.Boolean IsApiIdSet { get; } + global::System.Boolean IsCollectionSet { get; } - global::System.Boolean IsSchemaSet { get; } + global::System.Boolean IsOpenApiCollectionIdSet { get; } + + global::System.Boolean IsSourceSet { get; } global::System.Boolean IsStageSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IUpdateStagesInputInfo + internal interface ICreateOpenApiCollectionInputInfo { global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsUpdatedStagesSet { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IStageUpdateInputInfo - { - global::System.Boolean IsConditionsSet { get; } - - global::System.Boolean IsDisplayNameSet { get; } - global::System.Boolean IsNameSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IStageConditionUpdateInputInfo + internal interface IDeleteOpenApiCollectionByIdInputInfo { - global::System.Boolean IsAfterStageSet { get; } + global::System.Boolean IsOpenApiCollectionIdSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator @@ -192785,15 +194895,15 @@ internal interface ICreateWorkspaceInputInfo // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IBeginFusionConfigurationPublishInputInfo + internal interface IPublishSchemaInputInfo { global::System.Boolean IsApiIdSet { get; } - global::System.Boolean IsStageNameSet { get; } + global::System.Boolean IsForceSet { get; } - global::System.Boolean IsSubgraphApiIdSet { get; } + global::System.Boolean IsSourceSet { get; } - global::System.Boolean IsSubgraphNameSet { get; } + global::System.Boolean IsStageSet { get; } global::System.Boolean IsTagSet { get; } @@ -192802,813 +194912,117 @@ internal interface IBeginFusionConfigurationPublishInputInfo // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICancelFusionConfigurationCompositionInputInfo + internal interface IUploadSchemaInputInfo { - global::System.Boolean IsRequestIdSet { get; } - } + global::System.Boolean IsApiIdSet { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface ICommitFusionConfigurationPublishInputInfo - { - global::System.Boolean IsConfigurationSet { get; } + global::System.Boolean IsSchemaSet { get; } - global::System.Boolean IsRequestIdSet { get; } - } + global::System.Boolean IsSourceSet { get; } - // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IStartFusionConfigurationCompositionInputInfo - { - global::System.Boolean IsRequestIdSet { get; } + global::System.Boolean IsTagSet { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - internal interface IValidateFusionConfigurationCompositionInputInfo - { - global::System.Boolean IsConfigurationSet { get; } - - global::System.Boolean IsRequestIdSet { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiKeyCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - public CreateApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CreateApiKeyCommandMutationResultInfo(Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createApiKey"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateApiKeyPayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData(typename, result: Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result")), errors: Deserialize_ICreateApiKeyErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKeyWithSecret", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData(typename, key: Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "key")), secret: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "secret"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _iDParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateApiKeyErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var createApiKeyErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - createApiKeyErrors.Add(Deserialize_NonNullableICreateApiKeyErrorData(child)); - } - - return createApiKeyErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData Deserialize_NonNullableICreateApiKeyErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); - } - - if (typename?.Equals("WorkspaceNotFound", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), workspaceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceId"))); - } - - if (typename?.Equals("PersonalWorkspaceNotSupportedError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalWorkspaceNotSupportedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("RoleNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.RoleNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), roleId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "roleId"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var validationErrorPropertys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - validationErrorPropertys.Add(Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(child)); - } - - return validationErrorPropertys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidationErrorProperty", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiKeyCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public DeleteApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new DeleteApiKeyCommandMutationResultInfo(Deserialize_NonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteApiKey"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData Deserialize_NonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeleteApiKeyPayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData(typename, apiKey: Deserialize_IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKey")), errors: Deserialize_IDeleteApiKeyErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Deserialize_IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _iDParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteApiKeyErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var deleteApiKeyErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - deleteApiKeyErrors.Add(Deserialize_NonNullableIDeleteApiKeyErrorData(child)); - } - - return deleteApiKeyErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData Deserialize_NonNullableIDeleteApiKeyErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKeyNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiKeyId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKeyId"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiKeyCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ListApiKeyCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ListApiKeyCommandQueryResultInfo(Deserialize_IListApiKeyCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiKeyCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apiKeys: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKeys"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKeysConnection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData(typename, edges: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var apiKeysEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - apiKeysEdges.Add(Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(child)); - } - - return apiKeysEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKeysEdge", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result_Key_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + internal interface IValidateSchemaInputInfo { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _apiKindParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _apiKindParser = serializerResolver.GetLeafValueParser("ApiKind") ?? throw new global::System.ArgumentException("No serializer for type `ApiKind` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CreateApiCommandMutationResultInfo(Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pushWorkspaceChanges"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData(typename, changes: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes")), errors: Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var workspaceChangePayloads = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - workspaceChangePayloads.Add(Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(child)); - } - - return workspaceChangePayloads; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } + global::System.Boolean IsApiIdSet { get; } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } + global::System.Boolean IsSchemaSet { get; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData(typename, referenceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "referenceId")), error: Deserialize_IWorkspaceChangeErrorData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "error")), result: Deserialize_IWorkspaceChangeResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result"))); - } + global::System.Boolean IsSourceSet { get; } - throw new global::System.NotSupportedException(); - } + global::System.Boolean IsStageSet { get; } + } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface ICancelFusionConfigurationCompositionInputInfo + { + global::System.Boolean IsRequestIdSet { get; } + } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface ICommitFusionConfigurationPublishInputInfo + { + global::System.Boolean IsConfigurationSet { get; } - return _stringParser.Parse(obj.Value.GetString()!); - } + global::System.Boolean IsRequestIdSet { get; } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Deserialize_IWorkspaceChangeErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IStartFusionConfigurationCompositionInputInfo + { + global::System.Boolean IsRequestIdSet { get; } + } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IBeginFusionConfigurationPublishInputInfo + { + global::System.Boolean IsApiIdSet { get; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ChangeValidationFailed", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsSourceSet { get; } - if (typename?.Equals("HasBeenChangedConflict", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsStageNameSet { get; } - if (typename?.Equals("HasBeenDeletedConflict", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsSubgraphApiIdSet { get; } - if (typename?.Equals("IdentifierCollisionConflict", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsSubgraphNameSet { get; } - if (typename?.Equals("UnexpectedErrorOnChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsSubgraphsSet { get; } - if (typename?.Equals("WorkspaceNotFoundForChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + global::System.Boolean IsTagSet { get; } - throw new global::System.NotSupportedException(); - } + global::System.Boolean IsWaitForApprovalSet { get; } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Deserialize_IWorkspaceChangeResultData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IFusionSubgraphVersionInputInfo + { + global::System.Boolean IsNameSet { get; } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } + global::System.Boolean IsTagSet { get; } + } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.InputTypeStateInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + internal interface IValidateFusionConfigurationCompositionInputInfo + { + global::System.Boolean IsConfigurationSet { get; } - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); - } + global::System.Boolean IsRequestIdSet { get; } + } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadFusionSubgraphBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new UploadFusionSubgraphResultInfo(Deserialize_NonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadFusionSubgraph"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData Deserialize_NonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -193620,16 +195034,16 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UploadFusionSubgraphPayload", global::System.StringComparison.Ordinal) ?? false) { - @strings.Add(Deserialize_NonNullableString(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData(typename, fusionSubgraphVersion: Deserialize_IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fusionSubgraphVersion")), errors: Deserialize_IUploadFusionSubgraphErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - return @strings; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? Deserialize_IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -193642,15 +195056,15 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -193662,37 +195076,31 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); - } - - throw new global::System.NotSupportedException(); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadFusionSubgraphErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + var uploadFusionSubgraphErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + uploadFusionSubgraphErrors.Add(Deserialize_NonNullableIUploadFusionSubgraphErrorData(child)); } - throw new global::System.NotSupportedException(); + return uploadFusionSubgraphErrors; } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData Deserialize_NonNullableIUploadFusionSubgraphErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -193704,51 +195112,35 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("InvalidFusionSourceSchemaArchiveError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidFusionSourceSchemaArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - pushWorkspaceChangesErrors.Add(Deserialize_NonNullableIPushWorkspaceChangesErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return pushWorkspaceChangesErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData Deserialize_NonNullableIPushWorkspaceChangesErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("ChangeStructureInvalid", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -193757,27 +195149,25 @@ public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class FetchConfigurationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; - public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public FetchConfigurationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new DeleteApiCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new FetchConfigurationResultInfo(Deserialize_IFetchConfiguration_FusionConfigurationByApiId(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fusionConfigurationByApiId"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? Deserialize_IFetchConfiguration_FusionConfigurationByApiId(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -193790,209 +195180,9 @@ public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultData } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), version: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "version")), workspace: Deserialize_IDeleteApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); - } - - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); - } - - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); - } - - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); - } - - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); - } - - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); - } - - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); - } - - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); - } - - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); - } - - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); - } - - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); - } - - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); - } - - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); - } - - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); - } - - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); - } - - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); - } - - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); - } - - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); - } - - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); - } - - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); - } - - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); - } - - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); - } - - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); - } - - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); - } - - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); - } - - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); - } - - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); - } - - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); - } - - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); - } - - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); - } - - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); - } - - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); - } - - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); - } - - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); - } - - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); - } - - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); - } - - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); - } - - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); - } - - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); - } - - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); - } - - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfiguration", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData(typename, downloadUrl: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downloadUrl")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); } throw new global::System.NotSupportedException(); @@ -194012,52 +195202,35 @@ public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultData return _stringParser.Parse(obj.Value.GetString()!); } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IDeleteApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); - } - - throw new global::System.NotSupportedException(); - } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class CreateMockSchemaBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRIParser; + public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + _uRIParser = serializerResolver.GetLeafValueParser("URI") ?? throw new global::System.ArgumentException("No serializer for type `URI` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new DeleteApiCommandMutationResultInfo(Deserialize_NonNullableIDeleteApiCommandMutation_DeleteApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteApiById"))); + return new CreateMockSchemaResultInfo(Deserialize_NonNullableICreateMockSchema_CreateMockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createMockSchema"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData Deserialize_NonNullableIDeleteApiCommandMutation_DeleteApiById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData Deserialize_NonNullableICreateMockSchema_CreateMockSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194070,15 +195243,15 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeleteApiByIdPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CreateMockSchemaPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData(typename, api: Deserialize_IDeleteApiCommandMutation_DeleteApiById_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IDeleteApiByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData(typename, mockSchema: Deserialize_ICreateMockSchema_CreateMockSchema_MockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchema")), errors: Deserialize_ICreateMockSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IDeleteApiCommandMutation_DeleteApiById_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Deserialize_ICreateMockSchema_CreateMockSchema_MockSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194091,9 +195264,9 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); } throw new global::System.NotSupportedException(); @@ -194111,10 +195284,10 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194126,37 +195299,10 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - @strings.Add(Deserialize_NonNullableString(child)); - } - - return @strings; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194169,15 +195315,15 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194190,15 +195336,15 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194210,10 +195356,10 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + return _uRIParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteApiByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateMockSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194225,16 +195371,16 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD return null; } - var deleteApiByIdErrors = new global::System.Collections.Generic.List(); + var createMockSchemaErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - deleteApiByIdErrors.Add(Deserialize_NonNullableIDeleteApiByIdErrorData(child)); + createMockSchemaErrors.Add(Deserialize_NonNullableICreateMockSchemaErrorData(child)); } - return deleteApiByIdErrors; + return createMockSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData Deserialize_NonNullableIDeleteApiByIdErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData Deserialize_NonNullableICreateMockSchemaErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194249,17 +195395,22 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + } + + if (typename?.Equals("MockSchemaNonUniqueNameError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename); } - if (typename?.Equals("ApiDeletionFailedError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDeletionFailedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename); } throw new global::System.NotSupportedException(); @@ -194268,52 +195419,52 @@ public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultD // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class UpdateMockSchemaBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRIParser; + public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + _uRIParser = serializerResolver.GetLeafValueParser("URI") ?? throw new global::System.ArgumentException("No serializer for type `URI` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ListApiCommandQueryResultInfo(Deserialize_IListApiCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); + return new UpdateMockSchemaResultInfo(Deserialize_NonNullableIUpdateMockSchema_UpdateMockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateMockSchema"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData Deserialize_NonNullableIUpdateMockSchema_UpdateMockSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UpdateMockSchemaPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apis: Deserialize_IListApiCommandQuery_WorkspaceById_Apis(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apis"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData(typename, mockSchema: Deserialize_IUpdateMockSchema_UpdateMockSchema_MockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchema")), errors: Deserialize_IUpdateMockSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Deserialize_IListApiCommandQuery_WorkspaceById_Apis(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Deserialize_IUpdateMockSchema_UpdateMockSchema_MockSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194326,36 +195477,30 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData(typename, edges: Deserialize_IListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var apisEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - apisEdges.Add(Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(child)); + throw new global::System.ArgumentNullException(); } - return apisEdges; + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194367,16 +195512,10 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApisEdge", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); - } - - throw new global::System.NotSupportedException(); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194388,10 +195527,16 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194404,15 +195549,15 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194424,16 +195569,10 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - @strings.Add(Deserialize_NonNullableString(child)); - } - - return @strings; + return _uRIParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUpdateMockSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194445,16 +195584,16 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + var updateMockSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + updateMockSchemaErrors.Add(Deserialize_NonNullableIUpdateMockSchemaErrorData(child)); } - throw new global::System.NotSupportedException(); + return updateMockSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData Deserialize_NonNullableIUpdateMockSchemaErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194467,72 +195606,80 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchemaNonUniqueNameError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("MockSchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename); } throw new global::System.NotSupportedException(); } + } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListMockCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRIParser; + public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + _uRIParser = serializerResolver.GetLeafValueParser("URI") ?? throw new global::System.ArgumentException("No serializer for type `URI` found."); + } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListMockCommandQueryResultInfo(Deserialize_IListMockCommandQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IListMockCommandQuery_ApiById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mockSchemas: Deserialize_IListMockCommandQuery_ApiById_MockSchemas(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchemas"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? Deserialize_IListMockCommandQuery_ApiById_MockSchemas(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194544,69 +195691,52 @@ public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa return null; } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetApiSettingsCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData(typename, edges: Deserialize_IListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new SetApiSettingsCommandMutationResultInfo(Deserialize_NonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateApiSettings"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData Deserialize_NonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UpdateApiSettingsPayload", global::System.StringComparison.Ordinal) ?? false) + var mockSchemasEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData(typename, api: Deserialize_ISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IUpdateApiSettingsErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + mockSchemasEdges.Add(Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(child)); } - throw new global::System.NotSupportedException(); + return mockSchemasEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -194627,7 +195757,7 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194639,37 +195769,31 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) { - @strings.Add(Deserialize_NonNullableString(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); } - return @strings; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194682,15 +195806,15 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194703,15 +195827,15 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194723,31 +195847,31 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + return _uRIParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUpdateApiSettingsErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var updateApiSettingsErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - updateApiSettingsErrors.Add(Deserialize_NonNullableIUpdateApiSettingsErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } - return updateApiSettingsErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData Deserialize_NonNullableIUpdateApiSettingsErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -194759,41 +195883,47 @@ public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } + + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return null; } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ShowClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ShowApiCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new ShowClientCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) @@ -194811,7 +195941,7 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); } if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) @@ -194826,7 +195956,7 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_IShowClientCommandQuery_Node_Api_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_IShowClientCommandQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); } if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) @@ -195032,188 +196162,7 @@ public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFa return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - @strings.Add(Deserialize_NonNullableString(child)); - } - - return @strings; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateClientCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CreateClientCommandMutationResultInfo(Deserialize_NonNullableICreateClientCommandMutation_CreateClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createClient"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData Deserialize_NonNullableICreateClientCommandMutation_CreateClient(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateClientPayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData(typename, client: Deserialize_ICreateClientCommandMutation_CreateClient_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), errors: Deserialize_ICreateClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_ICreateClientCommandMutation_CreateClient_Client(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), api: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IShowClientCommandQuery_Node_Api_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195255,7 +196204,7 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IShowClientCommandQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195270,13 +196219,13 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195291,13 +196240,13 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var clientVersionEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientVersionEdges.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + clientVersionEdges.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195312,13 +196261,13 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195333,7 +196282,7 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } throw new global::System.NotSupportedException(); @@ -195354,7 +196303,7 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195369,13 +196318,13 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var publishedClientVersions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195390,13 +196339,13 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195417,7 +196366,7 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195467,80 +196416,29 @@ public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResu return _stringParser.Parse(obj.Value.GetString()!); } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var createClientErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - createClientErrors.Add(Deserialize_NonNullableICreateClientErrorData(child)); - } - - return createClientErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData Deserialize_NonNullableICreateClientErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - throw new global::System.NotSupportedException(); - } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteClientByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class UnpublishClientBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new DeleteClientByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteClientById"))); + return new UnpublishClientResultInfo(Deserialize_NonNullableIUnpublishClient_UnpublishClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "unpublishClient"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData Deserialize_NonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData Deserialize_NonNullableIUnpublishClient_UnpublishClient(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195553,15 +196451,15 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeleteClientByIdPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnpublishClientPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData(typename, client: Deserialize_IDeleteClientByIdCommandMutation_DeleteClientById_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), errors: Deserialize_IDeleteClientByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData(typename, clientVersion: Deserialize_IUnpublishClient_UnpublishClient_ClientVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientVersion")), errors: Deserialize_IUnpublishClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IDeleteClientByIdCommandMutation_DeleteClientById_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Deserialize_IUnpublishClient_UnpublishClient_ClientVersion(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195574,9 +196472,9 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), api: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), client: Deserialize_IUnpublishClient_UnpublishClient_ClientVersion_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client"))); } throw new global::System.NotSupportedException(); @@ -195594,10 +196492,10 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IUnpublishClient_UnpublishClient_ClientVersion_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195610,78 +196508,102 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUnpublishClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var @strings = new global::System.Collections.Generic.List(); + var unpublishClientErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - @strings.Add(Deserialize_NonNullableString(child)); + unpublishClientErrors.Add(Deserialize_NonNullableIUnpublishClientErrorData(child)); } - return @strings; + return unpublishClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData Deserialize_NonNullableIUnpublishClientErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - throw new global::System.NotSupportedException(); - } + if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); + } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) { - clientVersionEdges.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return clientVersionEdges; + throw new global::System.NotSupportedException(); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadClientBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new UploadClientResultInfo(Deserialize_NonNullableIUploadClient_UploadClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadClient"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData Deserialize_NonNullableIUploadClient_UploadClient(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195694,36 +196616,36 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UploadClientPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData(typename, clientVersion: Deserialize_IUploadClient_UploadClient_ClientVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientVersion")), errors: Deserialize_IUploadClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Deserialize_IUploadClient_UploadClient_ClientVersion(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195735,31 +196657,31 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var publishedClientVersions = new global::System.Collections.Generic.List(); + var uploadClientErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + uploadClientErrors.Add(Deserialize_NonNullableIUploadClientErrorData(child)); } - return publishedClientVersions; + return uploadClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData Deserialize_NonNullableIUploadClientErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195772,57 +196694,65 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidPersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidPersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } + } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateClientVersionBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public ValidateClientVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ValidateClientVersionResultInfo(Deserialize_NonNullableIValidateClientVersion_ValidateClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateClient"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData Deserialize_NonNullableIValidateClientVersion_ValidateClient(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195834,7 +196764,13 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ValidateClientPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); } private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) @@ -195849,10 +196785,10 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation return null; } - return _stringParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteClientByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195864,16 +196800,16 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation return null; } - var deleteClientByIdErrors = new global::System.Collections.Generic.List(); + var validateClientErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - deleteClientByIdErrors.Add(Deserialize_NonNullableIDeleteClientByIdErrorData(child)); + validateClientErrors.Add(Deserialize_NonNullableIValidateClientErrorData(child)); } - return deleteClientByIdErrors; + return validateClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData Deserialize_NonNullableIDeleteClientByIdErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData Deserialize_NonNullableIValidateClientErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -195886,6 +196822,11 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); @@ -195896,258 +196837,304 @@ public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperation return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _stringParser.Parse(obj.Value.GetString()!); + } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class OnClientVersionValidationUpdatedBuilder : global::StrawberryShake.OperationResultBuilder { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ListClientCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new OnClientVersionValidationUpdatedResultInfo(Deserialize_NonNullableIClientVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onClientVersionValidationUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData Deserialize_NonNullableIClientVersionValidationResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, clients: Deserialize_IListClientCommandQuery_Node_Clients(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clients"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIClientVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); - } + return _stringParser.Parse(obj.Value.GetString()!); + } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); - } + return _processingStateParser.Parse(obj.Value.GetString()!); + } - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIClientVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + var clientVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); + clientVersionValidationErrors.Add(Deserialize_NonNullableIClientVersionValidationErrorData(child)); } - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); - } + return clientVersionValidationErrors; + } - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData Deserialize_NonNullableIClientVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); } - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); + return null; } - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); + return null; } - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + return persistedQueryValidationFaileds; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); + @strings.Add(Deserialize_NonNullableString(child)); } - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) + return @strings; + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) + return persistedQueryErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Deserialize_IListClientCommandQuery_Node_Clients(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196159,16 +197146,10 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData(typename, edges: Deserialize_IListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); - } - - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196180,16 +197161,16 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return null; } - var clientsEdges = new global::System.Collections.Generic.List(); + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientsEdges.Add(Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - return clientsEdges; + return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196202,15 +197183,15 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196222,10 +197203,35 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _intParser.Parse(obj.Value.GetInt32()!); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteClientByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public DeleteClientByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new DeleteClientByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteClientById"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData Deserialize_NonNullableIDeleteClientByIdCommandMutation_DeleteClientById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196237,16 +197243,52 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.ArgumentNullException(); } + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeleteClientByIdPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdPayloadData(typename, client: Deserialize_IDeleteClientByIdCommandMutation_DeleteClientById_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), errors: Deserialize_IDeleteClientByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IDeleteClientByIdCommandMutation_DeleteClientById_Client(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), api: Deserialize_IShowClientCommandQuery_Node_Api_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_IShowClientCommandQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _stringParser.Parse(obj.Value.GetString()!); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IShowClientCommandQuery_Node_Api_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196288,7 +197330,7 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IShowClientCommandQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196303,13 +197345,13 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196324,13 +197366,13 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var clientVersionEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientVersionEdges.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + clientVersionEdges.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196345,13 +197387,13 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196366,7 +197408,7 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } throw new global::System.NotSupportedException(); @@ -196387,7 +197429,7 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196402,13 +197444,13 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var publishedClientVersions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196423,13 +197465,13 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196450,7 +197492,7 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196501,7 +197543,28 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteClientByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var deleteClientByIdErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + deleteClientByIdErrors.Add(Deserialize_NonNullableIDeleteClientByIdErrorData(child)); + } + + return deleteClientByIdErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteClientByIdErrorData Deserialize_NonNullableIDeleteClientByIdErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196514,9 +197577,14 @@ public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); + } + + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -196530,12 +197598,14 @@ public partial class PublishClientVersionBuilder : global::StrawberryShake.Opera private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; public PublishClientVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } @@ -196635,6 +197705,11 @@ public PublishClientVersionBuilder(global::StrawberryShake.IOperationResultDataF return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); } + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } @@ -196804,7 +197879,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) @@ -196825,7 +197900,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196846,7 +197921,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196861,13 +197936,13 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196882,7 +197957,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -196909,7 +197984,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return @strings; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196924,13 +197999,13 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196945,7 +198020,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } throw new global::System.NotSupportedException(); @@ -196966,7 +198041,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -196981,13 +198056,13 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197100,7 +198175,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } throw new global::System.NotSupportedException(); @@ -197142,33 +198217,33 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197180,16 +198255,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return schemaChangeLogEntrys; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197202,60 +198277,57 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } - if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return null; } - if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return null; } - if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); } - throw new global::System.NotSupportedException(); + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197267,10 +198339,21 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197282,16 +198365,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var directiveChanges = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); + mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); } - return directiveChanges; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197304,61 +198387,41 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } - if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var argumentChanges = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return argumentChanges; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197371,25 +198434,15 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197401,10 +198454,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _directiveLocationParser.Parse(obj.Value.GetString()!); + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } + + return openApiCollectionValidationCollections; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197416,52 +198475,37 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var enumChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } - return enumChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } - - if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197473,16 +198517,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var enumValueChanges = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); } - return enumValueChanges; + return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197495,20 +198539,20 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197520,16 +198564,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var inputObjectChanges = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); + openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); } - return inputObjectChanges; + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197542,51 +198586,41 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } - if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var inputFieldChanges = new global::System.Collections.Generic.List(); + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } - return inputFieldChanges; + return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197599,25 +198633,15 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197629,16 +198653,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var interfaceChanges = new global::System.Collections.Generic.List(); + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); + schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); } - return interfaceChanges; + return schemaChangeLogEntrys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197651,50 +198675,60 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } - if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); + } + + if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197706,16 +198740,31 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var outputFieldChanges = new global::System.Collections.Generic.List(); + return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var directiveChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); } - return outputFieldChanges; + return directiveChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197743,25 +198792,25 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); } - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197773,16 +198822,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var objectChanges = new global::System.Collections.Generic.List(); + var argumentChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); + argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); } - return objectChanges; + return argumentChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197795,40 +198844,40 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _directiveLocationParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197840,16 +198889,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var scalarChanges = new global::System.Collections.Generic.List(); + var enumChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); } - return scalarChanges; + return enumChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197867,10 +198916,25 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } + if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197882,16 +198946,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var unionChanges = new global::System.Collections.Generic.List(); + var enumValueChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); } - return unionChanges; + return enumValueChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197904,25 +198968,20 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197934,16 +198993,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var graphQLSchemaErrors = new global::System.Collections.Generic.List(); + var inputObjectChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - graphQLSchemaErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); } - return graphQLSchemaErrors; + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197956,15 +199015,30 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197976,16 +199050,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + var inputFieldChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); } - return openApiCollectionValidationCollections; + return inputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -197998,36 +199072,46 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + var interfaceChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); } - throw new global::System.NotSupportedException(); + return interfaceChanges; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198039,42 +199123,51 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); } - return openApiCollectionValidationEntitys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198086,16 +199179,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var outputFieldChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); } - return openApiCollectionValidationEntityErrors; + return outputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198108,62 +199201,40 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); - } - - if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - return openApiCollectionValidationDocumentErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198175,16 +199246,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + var objectChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); } - return mcpFeatureCollectionValidationCollections; + return objectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198197,36 +199268,40 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - throw new global::System.NotSupportedException(); - } + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198238,16 +199313,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var scalarChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return mcpFeatureCollectionValidationEntitys; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198260,20 +199335,15 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198285,16 +199355,16 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var unionChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return unionChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198307,41 +199377,46 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var graphQLSchemaErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + graphQLSchemaErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return graphQLSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198354,9 +199429,9 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code"))); } throw new global::System.NotSupportedException(); @@ -198398,7 +199473,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); @@ -198440,7 +199515,7 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); @@ -198482,7 +199557,17 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) @@ -198505,42 +199590,34 @@ public OnClientVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } - throw new global::System.NotSupportedException(); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ListClientCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ShowClientCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new ListClientCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) @@ -198558,7 +199635,7 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, clients: Deserialize_IListClientCommandQuery_Node_Clients(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clients"))); } if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) @@ -198573,7 +199650,7 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); } if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) @@ -198764,22 +199841,7 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _iDParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Deserialize_IListClientCommandQuery_Node_Clients(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198792,78 +199854,72 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData(typename, edges: Deserialize_IListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListClientCommandQuery_Node_Clients_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var @strings = new global::System.Collections.Generic.List(); + var clientsEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - @strings.Add(Deserialize_NonNullableString(child)); + clientsEdges.Add(Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges(child)); } - return @strings; + return clientsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientsEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - clientVersionEdges.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); + throw new global::System.ArgumentNullException(); } - return clientVersionEdges; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198876,36 +199932,36 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_IShowClientCommandQuery_Node_Api_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_IShowClientCommandQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IShowClientCommandQuery_Node_Api_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198917,73 +199973,79 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + @strings.Add(Deserialize_NonNullableString(child)); + } + + return @strings; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IShowClientCommandQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } - return publishedClientVersions; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + clientVersionEdges.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } - throw new global::System.NotSupportedException(); + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -198996,15 +200058,15 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199016,46 +200078,31 @@ public ShowClientCommandQueryBuilder(global::StrawberryShake.IOperationResultDat throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UnpublishClientBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UnpublishClientResultInfo(Deserialize_NonNullableIUnpublishClient_UnpublishClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "unpublishClient"))); + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData Deserialize_NonNullableIUnpublishClient_UnpublishClient(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199068,15 +200115,15 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnpublishClientPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnpublishClientPayloadData(typename, clientVersion: Deserialize_IUnpublishClient_UnpublishClient_ClientVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientVersion")), errors: Deserialize_IUnpublishClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Deserialize_IUnpublishClient_UnpublishClient_ClientVersion(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199089,15 +200136,15 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), client: Deserialize_IUnpublishClient_UnpublishClient_ClientVersion_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199109,31 +200156,31 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IUnpublishClient_UnpublishClient_ClientVersion_Client(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUnpublishClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199145,16 +200192,10 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor return null; } - var unpublishClientErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - unpublishClientErrors.Add(Deserialize_NonNullableIUnpublishClientErrorData(child)); - } - - return unpublishClientErrors; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnpublishClientErrorData Deserialize_NonNullableIUnpublishClientErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListClientCommandQuery_Node_Clients_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199167,29 +200208,9 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ClientVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); - } - - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } throw new global::System.NotSupportedException(); @@ -199198,27 +200219,29 @@ public UnpublishClientBuilder(global::StrawberryShake.IOperationResultDataFactor // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadClientBuilder : global::StrawberryShake.OperationResultBuilder + public partial class CreateClientCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public CreateClientCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new UploadClientResultInfo(Deserialize_NonNullableIUploadClient_UploadClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadClient"))); + return new CreateClientCommandMutationResultInfo(Deserialize_NonNullableICreateClientCommandMutation_CreateClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createClient"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UploadClientPayloadData Deserialize_NonNullableIUploadClient_UploadClient(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientPayloadData Deserialize_NonNullableICreateClientCommandMutation_CreateClient(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199231,15 +200254,15 @@ public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory? Deserialize_IUploadClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IShowClientCommandQuery_Node_Api_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199287,16 +200310,16 @@ public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - uploadClientErrors.Add(Deserialize_NonNullableIUploadClientErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); } - return uploadClientErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadClientErrorData Deserialize_NonNullableIUploadClientErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199308,95 +200331,37 @@ public UploadClientBuilder(global::StrawberryShake.IOperationResultDataFactory(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + @strings.Add(Deserialize_NonNullableString(child)); } - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateClientVersionBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ValidateClientVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ValidateClientVersionResultInfo(Deserialize_NonNullableIValidateClientVersion_ValidateClient(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateClient"))); + return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData Deserialize_NonNullableIValidateClientVersion_ValidateClient(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IShowClientCommandQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidateClientPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateClientPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateClientErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - return _iDParser.Parse(obj.Value.GetString()!); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199408,16 +200373,16 @@ public ValidateClientVersionBuilder(global::StrawberryShake.IOperationResultData return null; } - var validateClientErrors = new global::System.Collections.Generic.List(); + var clientVersionEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - validateClientErrors.Add(Deserialize_NonNullableIValidateClientErrorData(child)); + clientVersionEdges.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); } - return validateClientErrors; + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateClientErrorData Deserialize_NonNullableIValidateClientErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199430,65 +200395,15 @@ public ValidateClientVersionBuilder(global::StrawberryShake.IOperationResultData } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - if (typename?.Equals("ClientNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), clientId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clientId"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnClientVersionValidationUpdatedBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new OnClientVersionValidationUpdatedResultInfo(Deserialize_NonNullableIClientVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onClientVersionValidationUpdate"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationResultData Deserialize_NonNullableIClientVersionValidationResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199501,45 +200416,15 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIClientVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("ClientVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); - } - - if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); - } - - if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199551,10 +200436,10 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - return _processingStateParser.Parse(obj.Value.GetString()!); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIClientVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199566,16 +200451,16 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - var clientVersionValidationErrors = new global::System.Collections.Generic.List(); + var publishedClientVersions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientVersionValidationErrors.Add(Deserialize_NonNullableIClientVersionValidationErrorData(child)); + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - return clientVersionValidationErrors; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IClientVersionValidationErrorData Deserialize_NonNullableIClientVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199588,30 +200473,15 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); - } - - if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); - } - - if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199624,36 +200494,15 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); - } - - return persistedQueryValidationFaileds; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199666,57 +200515,15 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - @strings.Add(Deserialize_NonNullableString(child)); - } - - return @strings; - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); - } - - return persistedQueryErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199728,13 +200535,7 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); - } - - throw new global::System.NotSupportedException(); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) @@ -199752,7 +200553,7 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199764,16 +200565,16 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + var createClientErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + createClientErrors.Add(Deserialize_NonNullableICreateClientErrorData(child)); } - return persistedQueryErrorLocations; + return createClientErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateClientErrorData Deserialize_NonNullableICreateClientErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199786,72 +200587,43 @@ public OnClientVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _intParser.Parse(obj.Value.GetInt32()!); + throw new global::System.NotSupportedException(); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateEnvironmentCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ShowApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public CreateEnvironmentCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ShowApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new CreateEnvironmentCommandMutationResultInfo(Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pushWorkspaceChanges"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData(typename, changes: Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes")), errors: Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - throw new global::System.NotSupportedException(); + return new ShowApiCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -199863,307 +200635,210 @@ public CreateEnvironmentCommandMutationBuilder(global::StrawberryShake.IOperatio return null; } - var workspaceChangePayloads = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - workspaceChangePayloads.Add(Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(child)); - } - - return workspaceChangePayloads; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData(typename, referenceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "referenceId")), error: Deserialize_IWorkspaceChangeErrorData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "error")), result: Deserialize_IWorkspaceChangeResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); } - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Deserialize_IWorkspaceChangeErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ChangeValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); } - if (typename?.Equals("HasBeenChangedConflict", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } - if (typename?.Equals("HasBeenDeletedConflict", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); } - if (typename?.Equals("IdentifierCollisionConflict", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); } - if (typename?.Equals("UnexpectedErrorOnChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); } - if (typename?.Equals("WorkspaceNotFoundForChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Deserialize_IWorkspaceChangeResultData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), workspace: Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - pushWorkspaceChangesErrors.Add(Deserialize_NonNullableIPushWorkspaceChangesErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - return pushWorkspaceChangesErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData Deserialize_NonNullableIPushWorkspaceChangesErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - if (typename?.Equals("ChangeStructureInvalid", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); } - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListEnvironmentCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ListEnvironmentCommandQueryResultInfo(Deserialize_IListEnvironmentCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, environments: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "environments"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData(typename, edges: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - var environmentsEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - environmentsEdges.Add(Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(child)); - } - - return environmentsEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + } + + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("EnvironmentsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); @@ -200181,10 +200856,10 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200196,16 +200871,16 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); + @strings.Add(Deserialize_NonNullableString(child)); } - throw new global::System.NotSupportedException(); + return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200220,13 +200895,13 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200239,15 +200914,15 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200259,43 +200934,51 @@ public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowEnvironmentCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class DeleteApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; + public DeleteApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ShowEnvironmentCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new DeleteApiCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) @@ -200313,7 +200996,7 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), version: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "version")), workspace: Deserialize_IDeleteApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) @@ -200353,7 +201036,7 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) @@ -200531,10 +201214,10 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IDeleteApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200549,93 +201232,36 @@ public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResu var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class FetchConfigurationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public FetchConfigurationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new FetchConfigurationResultInfo(Deserialize_IFetchConfiguration_FusionConfigurationByApiId(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fusionConfigurationByApiId"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData? Deserialize_IFetchConfiguration_FusionConfigurationByApiId(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("FusionConfiguration", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationData(typename, downloadUrl: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downloadUrl")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadFusionSubgraphBuilder : global::StrawberryShake.OperationResultBuilder + public partial class DeleteApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public DeleteApiCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new UploadFusionSubgraphResultInfo(Deserialize_NonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadFusionSubgraph"))); + return new DeleteApiCommandMutationResultInfo(Deserialize_NonNullableIDeleteApiCommandMutation_DeleteApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteApiById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData Deserialize_NonNullableIUploadFusionSubgraph_UploadFusionSubgraph(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData Deserialize_NonNullableIDeleteApiCommandMutation_DeleteApiById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200648,15 +201274,15 @@ public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UploadFusionSubgraphPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeleteApiByIdPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphPayloadData(typename, fusionSubgraphVersion: Deserialize_IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fusionSubgraphVersion")), errors: Deserialize_IUploadFusionSubgraphErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiByIdPayloadData(typename, api: Deserialize_IDeleteApiCommandMutation_DeleteApiById_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IDeleteApiByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? Deserialize_IUploadFusionSubgraph_UploadFusionSubgraph_FusionSubgraphVersion(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IDeleteApiCommandMutation_DeleteApiById_Api(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200669,9 +201295,9 @@ public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("FusionSubgraphVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } throw new global::System.NotSupportedException(); @@ -200689,93 +201315,52 @@ public UploadFusionSubgraphBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadFusionSubgraphErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var uploadFusionSubgraphErrors = new global::System.Collections.Generic.List(); + var @strings = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - uploadFusionSubgraphErrors.Add(Deserialize_NonNullableIUploadFusionSubgraphErrorData(child)); + @strings.Add(Deserialize_NonNullableString(child)); } - return uploadFusionSubgraphErrors; + return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadFusionSubgraphErrorData Deserialize_NonNullableIUploadFusionSubgraphErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("InvalidFusionSourceSchemaArchiveError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidFusionSourceSchemaArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CreateMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createMcpFeatureCollection"))); - } - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData Deserialize_NonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200788,36 +201373,36 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData(typename, mcpFeatureCollection: Deserialize_ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), errors: Deserialize_ICreateMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200829,10 +201414,10 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteApiByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200844,16 +201429,16 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. return null; } - var createMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + var deleteApiByIdErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - createMcpFeatureCollectionErrors.Add(Deserialize_NonNullableICreateMcpFeatureCollectionErrorData(child)); + deleteApiByIdErrors.Add(Deserialize_NonNullableIDeleteApiByIdErrorData(child)); } - return createMcpFeatureCollectionErrors; + return deleteApiByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData Deserialize_NonNullableICreateMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiByIdErrorData Deserialize_NonNullableIDeleteApiByIdErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200868,7 +201453,7 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) @@ -200876,52 +201461,63 @@ public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("ApiDeletionFailedError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDeletionFailedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteMcpFeatureCollectionByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ListApiCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ListApiCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteMcpFeatureCollectionById"))); + return new ListApiCommandQueryResultInfo(Deserialize_IListApiCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeleteMcpFeatureCollectionByIdPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData(typename, mcpFeatureCollection: Deserialize_IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), errors: Deserialize_IDeleteMcpFeatureCollectionByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apis: Deserialize_IListApiCommandQuery_WorkspaceById_Apis(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apis"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Deserialize_IListApiCommandQuery_WorkspaceById_Apis(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200934,30 +201530,15 @@ public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberrySh } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData(typename, edges: Deserialize_IListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteMcpFeatureCollectionByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListApiCommandQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200969,16 +201550,16 @@ public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberrySh return null; } - var deleteMcpFeatureCollectionByIdErrors = new global::System.Collections.Generic.List(); + var apisEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - deleteMcpFeatureCollectionByIdErrors.Add(Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdErrorData(child)); + apisEdges.Add(Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(child)); } - return deleteMcpFeatureCollectionByIdErrors; + return apisEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -200991,287 +201572,287 @@ public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberrySh } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApisEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMcpFeatureCollectionCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ListMcpFeatureCollectionCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mcpFeatureCollections: Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); + @strings.Add(Deserialize_NonNullableString(child)); } - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); - } + return @strings; + } - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); + return null; } - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); + return null; } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); } - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); } - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); - } + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListApiCommandQuery_WorkspaceById_Apis_PageInfo(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); + return null; } - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); + return null; } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetApiSettingsCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public SetApiSettingsCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); - } + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new SetApiSettingsCommandMutationResultInfo(Deserialize_NonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateApiSettings"))); + } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData Deserialize_NonNullableISetApiSettingsCommandMutation_UpdateApiSettings(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UpdateApiSettingsPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateApiSettingsPayloadData(typename, api: Deserialize_ISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IUpdateApiSettingsErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISetApiSettingsCommandMutation_UpdateApiSettings_Api(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); + return null; } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); + return null; } - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData(typename, edges: Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + @strings.Add(Deserialize_NonNullableString(child)); } - throw new global::System.NotSupportedException(); + return @strings; } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201283,16 +201864,16 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper return null; } - var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - apiMcpFeatureCollectionsEdges.Add(Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return apiMcpFeatureCollectionsEdges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201305,15 +201886,15 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201325,10 +201906,16 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201340,37 +201927,31 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUpdateApiSettingsErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + var updateApiSettingsErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + updateApiSettingsErrors.Add(Deserialize_NonNullableIUpdateApiSettingsErrorData(child)); } - throw new global::System.NotSupportedException(); + return updateApiSettingsErrors; } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateApiSettingsErrorData Deserialize_NonNullableIUpdateApiSettingsErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201382,48 +201963,46 @@ public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOper throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _stringParser.Parse(obj.Value.GetString()!); + throw new global::System.NotSupportedException(); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class CreateApiCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _apiKindParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public CreateApiCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _apiKindParser = serializerResolver.GetLeafValueParser("ApiKind") ?? throw new global::System.ArgumentException("No serializer for type `ApiKind` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new PublishMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishMcpFeatureCollection"))); + return new CreateApiCommandMutationResultInfo(Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pushWorkspaceChanges"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData Deserialize_NonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201436,15 +202015,15 @@ public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData(typename, changes: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes")), errors: Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201456,31 +202035,37 @@ public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake return null; } - return _iDParser.Parse(obj.Value.GetString()!); + var workspaceChangePayloads = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + workspaceChangePayloads.Add(Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(child)); + } + + return workspaceChangePayloads; } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var publishMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal) ?? false) { - publishMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIPublishMcpFeatureCollectionErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData(typename, referenceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "referenceId")), error: Deserialize_IWorkspaceChangeErrorData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "error")), result: Deserialize_IWorkspaceChangeResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result"))); } - return publishMcpFeatureCollectionErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData Deserialize_NonNullableIPublishMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201492,141 +202077,134 @@ public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) + return _stringParser.Parse(obj.Value.GetString()!); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Deserialize_IWorkspaceChangeErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return null; } - if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ChangeValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("McpFeatureCollectionVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("HasBeenChangedConflict", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("HasBeenDeletedConflict", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("IdentifierCollisionConflict", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishMcpFeatureCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _directiveLocationParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); - _schemaChangeSeverityParser = serializerResolver.GetLeafValueParser("SchemaChangeSeverity") ?? throw new global::System.ArgumentException("No serializer for type `SchemaChangeSeverity` found."); - _directiveLocationParser = serializerResolver.GetLeafValueParser("DirectiveLocation") ?? throw new global::System.ArgumentException("No serializer for type `DirectiveLocation` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - } + if (typename?.Equals("UnexpectedErrorOnChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (typename?.Equals("WorkspaceNotFoundForChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new PublishMcpFeatureCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIMcpFeatureCollectionVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onMcpFeatureCollectionVersionPublishingUpdate"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData Deserialize_NonNullableIMcpFeatureCollectionVersionPublishResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Deserialize_IWorkspaceChangeResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - if (typename?.Equals("McpFeatureCollectionVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } - if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } - if (typename?.Equals("ProcessingTaskApproved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } - if (typename?.Equals("ProcessingTaskIsQueued", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData(typename, queued: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queued")), queuePosition: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queuePosition"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ProcessingTaskIsReady", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData(typename, ready: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "ready"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("WaitForApproval", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), deployment: Deserialize_IDeploymentData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployment"))); + @strings.Add(Deserialize_NonNullableString(child)); } - throw new global::System.NotSupportedException(); + return @strings; } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201638,10 +202216,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - return _processingStateParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201653,16 +202237,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionVersionPublishErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); } - return mcpFeatureCollectionVersionPublishErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201674,36 +202258,31 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } - if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); + return null; } - if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) + var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + pushWorkspaceChangesErrors.Add(Deserialize_NonNullableIPushWorkspaceChangesErrorData(child)); } - throw new global::System.NotSupportedException(); + return pushWorkspaceChangesErrors; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData Deserialize_NonNullableIPushWorkspaceChangesErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201715,16 +202294,42 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return mcpFeatureCollectionValidationCollections; + if (typename?.Equals("ChangeStructureInvalid", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UpdateStagesBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new UpdateStagesResultInfo(Deserialize_NonNullableIUpdateStages_UpdateStages(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateStages"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData Deserialize_NonNullableIUpdateStages_UpdateStages(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201737,15 +202342,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UpdateStagesPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData(typename, api: Deserialize_IUpdateStages_UpdateStages_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IUpdateStagesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IUpdateStages_UpdateStages_Api(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201758,15 +202363,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, stages: Deserialize_NonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stages"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201778,16 +202383,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var stages = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + stages.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages(child)); } - return mcpFeatureCollectionValidationEntitys; + return stages; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201800,20 +202405,30 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), displayName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "displayName")), conditions: Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "conditions"))); } - if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201825,16 +202440,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var stageConditions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + stageConditions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return stageConditions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201847,20 +202462,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("AfterStageCondition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData(typename, afterStage: Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "afterStage"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201872,10 +202482,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS return null; } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUpdateStagesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201887,16 +202503,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var updateStagesErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + updateStagesErrors.Add(Deserialize_NonNullableIUpdateStagesErrorData(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return updateStagesErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData Deserialize_NonNullableIUpdateStagesErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201909,71 +202525,51 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - throw new global::System.NotSupportedException(); - } + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } - private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("StagesHavePublishedDependenciesError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StagesHavePublishedDependenciesErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), stages: Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stages"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("StageValidationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _intParser.Parse(obj.Value.GetInt32()!); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + var stages = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + stages.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages(child)); } - throw new global::System.NotSupportedException(); + return stages; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -201985,37 +202581,37 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), publishedSchema: Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedSchema")), publishedClients: Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedClients"))); } - return clientDeploymentErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData? Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData(typename, version: Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "version"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202028,15 +202624,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202048,16 +202644,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + var publishedClients = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + publishedClients.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(child)); } - return persistedQueryValidationFaileds; + return publishedClients; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202070,15 +202666,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedClient", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData(typename, client: Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), publishedVersions: Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedVersions"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202090,16 +202686,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - @strings.Add(Deserialize_NonNullableString(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return @strings; + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202111,16 +202707,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var persistedQueryErrors = new global::System.Collections.Generic.List(); + var publishedClientVersions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + publishedClientVersions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(child)); } - return persistedQueryErrors; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202133,15 +202729,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, version: Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "version"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions_Version(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202153,268 +202749,258 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); } - return persistedQueryErrorLocations; + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListStagesQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListStagesQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, stages: Deserialize_NonNullableIListStagesQuery_Node_StagesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stages"))); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); } - return fusionConfigurationDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); } - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - return schemaChangeLogEntrys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); - } + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); + } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - var directiveChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - return directiveChanges; - } + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); } - if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIListStagesQuery_Node_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202426,16 +203012,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var argumentChanges = new global::System.Collections.Generic.List(); + var stages = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); + stages.Add(Deserialize_NonNullableIListStagesQuery_Node_Stages(child)); } - return argumentChanges; + return stages; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIListStagesQuery_Node_Stages(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202448,25 +203034,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), displayName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "displayName")), conditions: Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "conditions"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202478,10 +203054,10 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - return _directiveLocationParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202493,16 +203069,16 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var enumChanges = new global::System.Collections.Generic.List(); + var stageConditions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); + stageConditions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); } - return enumChanges; + return stageConditions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202515,155 +203091,126 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } - - if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("AfterStageCondition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData(typename, afterStage: Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "afterStage"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var enumValueChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return enumValueChanges; + throw new global::System.NotSupportedException(); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListEnvironmentCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ListEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListEnvironmentCommandQueryResultInfo(Deserialize_IListEnvironmentCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, environments: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "environments"))); } - return inputObjectChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnvironmentsConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData(typename, edges: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var inputFieldChanges = new global::System.Collections.Generic.List(); + var environmentsEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + environmentsEdges.Add(Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(child)); } - return inputFieldChanges; + return environmentsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202676,25 +203223,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnvironmentsEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202706,16 +203243,10 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); - } - - return interfaceChanges; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202728,71 +203259,36 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return outputFieldChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListEnvironmentCommandQuery_WorkspaceById_Environments_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202805,40 +203301,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -202850,418 +203321,324 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); - } - - return objectChanges; + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return null; } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowEnvironmentCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public ShowEnvironmentCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ShowEnvironmentCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); } - return scalarChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); } - return unionChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); } - if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); } - if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - var graphQLSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - graphQLSchemaErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - return graphQLSchemaErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - return openApiCollectionValidationCollections; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - return openApiCollectionValidationEntitys; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); } - if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - return openApiCollectionValidationEntityErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); } - if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + throw new global::System.ArgumentNullException(); } - return openApiCollectionValidationDocumentErrorLocations; + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } + } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateEnvironmentCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public CreateEnvironmentCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - return mcpFeatureCollectionDeploymentErrors; + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CreateEnvironmentCommandMutationResultInfo(Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pushWorkspaceChanges"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203274,36 +203651,36 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PushWorkspaceChangesPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PushWorkspaceChangesPayloadData(typename, changes: Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes")), errors: Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateEnvironmentCommandMutation_PushWorkspaceChanges_ChangesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + var workspaceChangePayloads = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + workspaceChangePayloads.Add(Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(child)); } - return openApiCollectionDeploymentErrors; + return workspaceChangePayloads; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData Deserialize_NonNullableICreateEnvironmentCommandMutation_PushWorkspaceChanges_Changes(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203316,15 +203693,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceChangePayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceChangePayloadData(typename, referenceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "referenceId")), error: Deserialize_IWorkspaceChangeErrorData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "error")), result: Deserialize_IWorkspaceChangeResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203336,111 +203713,56 @@ public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryS throw new global::System.ArgumentNullException(); } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); - } - - return schemaDeploymentErrors; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Deserialize_IWorkspaceChangeErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); - } - - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); - } - - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ChangeValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeValidationFailedData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("HasBeenChangedConflict", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenChangedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("HasBeenDeletedConflict", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.HasBeenDeletedConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UploadMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadMcpFeatureCollection"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData Deserialize_NonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + + if (typename?.Equals("IdentifierCollisionConflict", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.IdentifierCollisionConflictData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnexpectedErrorOnChange", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedErrorOnChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UploadMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceNotFoundForChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData(typename, mcpFeatureCollectionVersion: Deserialize_IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionVersion")), errors: Deserialize_IUploadMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundForChangeData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData? Deserialize_IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Deserialize_IWorkspaceChangeResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203453,30 +203775,51 @@ public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + } + + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + } + + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + } + + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), workspace: Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListEnvironmentCommandQuery_WorkspaceById_Environments_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _iDParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPushWorkspaceChangesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203488,16 +203831,16 @@ public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. return null; } - var uploadMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + var pushWorkspaceChangesErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - uploadMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIUploadMcpFeatureCollectionErrorData(child)); + pushWorkspaceChangesErrors.Add(Deserialize_NonNullableIPushWorkspaceChangesErrorData(child)); } - return uploadMcpFeatureCollectionErrors; + return pushWorkspaceChangesErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData Deserialize_NonNullableIUploadMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IPushWorkspaceChangesErrorData Deserialize_NonNullableIPushWorkspaceChangesErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203510,29 +203853,14 @@ public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("InvalidMcpFeatureCollectionArchiveError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ChangeStructureInvalid", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidMcpFeatureCollectionArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ChangeStructureInvalidData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -203541,48 +203869,50 @@ public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake. // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ListApiKeyCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ListApiKeyCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ValidateMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateMcpFeatureCollection"))); + return new ListApiKeyCommandQueryResultInfo(Deserialize_IListApiKeyCommandQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData Deserialize_NonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiKeyCommandQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apiKeys: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKeys"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203594,10 +203924,16 @@ public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShak return null; } - return _iDParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiKeysConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData(typename, edges: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203609,16 +203945,16 @@ public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShak return null; } - var validateMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); + var apiKeysEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - validateMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIValidateMcpFeatureCollectionErrorData(child)); + apiKeysEdges.Add(Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(child)); } - return validateMcpFeatureCollectionErrors; + return apiKeysEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData Deserialize_NonNullableIValidateMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203631,19 +203967,9 @@ public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } - - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiKeysEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -203663,33 +203989,8 @@ public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShak return _stringParser.Parse(obj.Value.GetString()!); } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateMcpFeatureCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIMcpFeatureCollectionVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onMcpFeatureCollectionVersionValidationUpdate"))); - } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData Deserialize_NonNullableIMcpFeatureCollectionVersionValidationResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203702,30 +204003,36 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } - if (typename?.Equals("McpFeatureCollectionVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return null; } - if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return null; } - if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListApiKeyCommandQuery_WorkspaceById_ApiKeys_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203737,10 +204044,16 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203752,31 +204065,46 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - return _processingStateParser.Parse(obj.Value.GetString()!); + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - mcpFeatureCollectionVersionValidationErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorData(child)); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - return mcpFeatureCollectionVersionValidationErrors; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateApiKeyCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + public CreateApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CreateApiKeyCommandMutationResultInfo(Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createApiKey"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203789,35 +204117,36 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationArchiveError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CreateApiKeyPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyPayloadData(typename, result: Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result")), errors: Deserialize_ICreateApiKeyErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? Deserialize_ICreateApiKeyCommandMutation_CreateApiKey_Result(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); + return null; } - if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiKeyWithSecret", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData(typename, key: Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "key")), secret: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "secret"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Result_Key(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203829,16 +204158,16 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } - return mcpFeatureCollectionValidationCollections; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203850,16 +204179,10 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); - } - - throw new global::System.NotSupportedException(); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203872,36 +204195,36 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateApiKeyErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var createApiKeyErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + createApiKeyErrors.Add(Deserialize_NonNullableICreateApiKeyErrorData(child)); } - return mcpFeatureCollectionValidationEntitys; + return createApiKeyErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateApiKeyErrorData Deserialize_NonNullableICreateApiKeyErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203914,20 +204237,40 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceNotFound", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceNotFoundData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), workspaceId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceId"))); + } + + if (typename?.Equals("PersonalWorkspaceNotSupportedError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalWorkspaceNotSupportedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("RoleNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.RoleNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), roleId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "roleId"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203939,16 +204282,16 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var validationErrorPropertys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + validationErrorPropertys.Add(Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return validationErrorPropertys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData Deserialize_NonNullableICreateApiKeyCommandMutation_CreateApiKey_Errors_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -203961,77 +204304,78 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationErrorProperty", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorPropertyData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } + } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteApiKeyCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public DeleteApiKeyCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - if (!obj.HasValue) - { - return null; - } + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - return _stringParser.Parse(obj.Value.GetString()!); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new DeleteApiKeyCommandMutationResultInfo(Deserialize_NonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteApiKey"))); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData Deserialize_NonNullableIDeleteApiKeyCommandMutation_DeleteApiKey(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeleteApiKeyPayload", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyPayloadData(typename, apiKey: Deserialize_IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKey")), errors: Deserialize_IDeleteApiKeyErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Deserialize_IDeleteApiKeyCommandMutation_DeleteApiKey_ApiKey(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), workspace: Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace"))); } throw new global::System.NotSupportedException(); } - private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204043,58 +204387,31 @@ public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::Strawberry throw new global::System.ArgumentNullException(); } - return _intParser.Parse(obj.Value.GetInt32()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateMockSchemaBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; - public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CreateMockSchemaResultInfo(Deserialize_NonNullableICreateMockSchema_CreateMockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createMockSchema"))); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData Deserialize_NonNullableICreateMockSchema_CreateMockSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IListApiKeyCommandQuery_WorkspaceById_ApiKeys_Edges_Node_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateMockSchemaPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaPayloadData(typename, mockSchema: Deserialize_ICreateMockSchema_CreateMockSchema_MockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchema")), errors: Deserialize_ICreateMockSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Deserialize_ICreateMockSchema_CreateMockSchema_MockSchema(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteApiKeyErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204106,16 +204423,16 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + var deleteApiKeyErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); + deleteApiKeyErrors.Add(Deserialize_NonNullableIDeleteApiKeyErrorData(child)); } - throw new global::System.NotSupportedException(); + return deleteApiKeyErrors; } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteApiKeyErrorData Deserialize_NonNullableIDeleteApiKeyErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204127,25 +204444,46 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); - } - - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiKeyNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiKeyId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiKeyId"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + throw new global::System.NotSupportedException(); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public UploadMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new UploadMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadMcpFeatureCollection"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData Deserialize_NonNullableIUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204158,36 +204496,36 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UploadMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionPayloadData(typename, mcpFeatureCollectionVersion: Deserialize_IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionVersion")), errors: Deserialize_IUploadMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData? Deserialize_IUploadMcpFeatureCollectionCommandMutation_UploadMcpFeatureCollection_McpFeatureCollectionVersion(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204199,10 +204537,10 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto throw new global::System.ArgumentNullException(); } - return _uRLParser.Parse(obj.Value.GetString()!); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateMockSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204214,16 +204552,16 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto return null; } - var createMockSchemaErrors = new global::System.Collections.Generic.List(); + var uploadMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - createMockSchemaErrors.Add(Deserialize_NonNullableICreateMockSchemaErrorData(child)); + uploadMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIUploadMcpFeatureCollectionErrorData(child)); } - return createMockSchemaErrors; + return uploadMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMockSchemaErrorData Deserialize_NonNullableICreateMockSchemaErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadMcpFeatureCollectionErrorData Deserialize_NonNullableIUploadMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204236,24 +204574,34 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("MockSchemaNonUniqueNameError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidMcpFeatureCollectionArchiveError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidMcpFeatureCollectionArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -204262,54 +204610,50 @@ public CreateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListMockCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ValidateMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; - public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ValidateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ListMockCommandQueryResultInfo(Deserialize_IListMockCommandQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + return new ValidateMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateMcpFeatureCollection"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IListMockCommandQuery_ApiById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData Deserialize_NonNullableIValidateMcpFeatureCollectionCommandMutation_ValidateMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mockSchemas: Deserialize_IListMockCommandQuery_ApiById_MockSchemas(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchemas"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? Deserialize_IListMockCommandQuery_ApiById_MockSchemas(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204321,16 +204665,10 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData(typename, edges: Deserialize_IListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); - } - - throw new global::System.NotSupportedException(); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListMockCommandQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204342,16 +204680,16 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF return null; } - var mockSchemasEdges = new global::System.Collections.Generic.List(); + var validateMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mockSchemasEdges.Add(Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(child)); + validateMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIValidateMcpFeatureCollectionErrorData(child)); } - return mockSchemasEdges; + return validateMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateMcpFeatureCollectionErrorData Deserialize_NonNullableIValidateMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204364,9 +204702,24 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -204386,8 +204739,33 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF return _stringParser.Parse(obj.Value.GetString()!); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_Edges_Node(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateMcpFeatureCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + public ValidateMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ValidateMcpFeatureCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIMcpFeatureCollectionVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onMcpFeatureCollectionVersionValidationUpdate"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationResultData Deserialize_NonNullableIMcpFeatureCollectionVersionValidationResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204400,15 +204778,30 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("McpFeatureCollectionVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + } + + if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + } + + if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204420,10 +204813,10 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204435,16 +204828,10 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); - } - - throw new global::System.NotSupportedException(); + return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204456,16 +204843,16 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + mcpFeatureCollectionVersionValidationErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorData(child)); } - throw new global::System.NotSupportedException(); + return mcpFeatureCollectionVersionValidationErrors; } - private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionValidationErrorData Deserialize_NonNullableIMcpFeatureCollectionVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204477,88 +204864,57 @@ public ListMockCommandQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _uRLParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListMockCommandQuery_ApiById_MockSchemas_PageInfo(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationArchiveError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - throw new global::System.NotSupportedException(); - } - - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateMockSchemaBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; - public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UpdateMockSchemaResultInfo(Deserialize_NonNullableIUpdateMockSchema_UpdateMockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateMockSchema"))); + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData Deserialize_NonNullableIUpdateMockSchema_UpdateMockSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204571,15 +204927,15 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UpdateMockSchemaPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaPayloadData(typename, mockSchema: Deserialize_IUpdateMockSchema_UpdateMockSchema_MockSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchema")), errors: Deserialize_IUpdateMockSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Deserialize_IUpdateMockSchema_UpdateMockSchema_MockSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204592,15 +204948,15 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204612,10 +204968,16 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + } + + return mcpFeatureCollectionValidationEntitys; } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204627,10 +204989,21 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204642,16 +205015,16 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); } - throw new global::System.NotSupportedException(); + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204664,30 +205037,35 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _uRLParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUpdateMockSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204699,16 +205077,16 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto return null; } - var updateMockSchemaErrors = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - updateMockSchemaErrors.Add(Deserialize_NonNullableIUpdateMockSchemaErrorData(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return updateMockSchemaErrors; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateMockSchemaErrorData Deserialize_NonNullableIUpdateMockSchemaErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204721,51 +205099,51 @@ public UpdateMockSchemaBuilder(global::StrawberryShake.IOperationResultDataFacto } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchemaNonUniqueNameError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNonUniqueNameErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - if (typename?.Equals("MockSchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _intParser.Parse(obj.Value.GetInt32()!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class DeleteMcpFeatureCollectionByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public DeleteMcpFeatureCollectionByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new CreateOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createOpenApiCollection"))); + return new DeleteMcpFeatureCollectionByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteMcpFeatureCollectionById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData Deserialize_NonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204778,15 +205156,15 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeleteMcpFeatureCollectionByIdPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData(typename, openApiCollection: Deserialize_ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), errors: Deserialize_ICreateOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdPayloadData(typename, mcpFeatureCollection: Deserialize_IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), errors: Deserialize_IDeleteMcpFeatureCollectionByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IDeleteMcpFeatureCollectionByIdCommandMutation_DeleteMcpFeatureCollectionById_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204799,9 +205177,9 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); @@ -204822,7 +205200,7 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteMcpFeatureCollectionByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204834,16 +205212,16 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp return null; } - var createOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + var deleteMcpFeatureCollectionByIdErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - createOpenApiCollectionErrors.Add(Deserialize_NonNullableICreateOpenApiCollectionErrorData(child)); + deleteMcpFeatureCollectionByIdErrors.Add(Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdErrorData(child)); } - return createOpenApiCollectionErrors; + return deleteMcpFeatureCollectionByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData Deserialize_NonNullableICreateOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteMcpFeatureCollectionByIdErrorData Deserialize_NonNullableIDeleteMcpFeatureCollectionByIdErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204856,9 +205234,9 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) @@ -204872,25 +205250,25 @@ public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class DeleteOpenApiCollectionByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class CreateMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public CreateMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new DeleteOpenApiCollectionByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteOpenApiCollectionById"))); + return new CreateMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createMcpFeatureCollection"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData Deserialize_NonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData Deserialize_NonNullableICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204903,15 +205281,15 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeleteOpenApiCollectionByIdPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CreateMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData(typename, openApiCollection: Deserialize_IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), errors: Deserialize_IDeleteOpenApiCollectionByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionPayloadData(typename, mcpFeatureCollection: Deserialize_ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), errors: Deserialize_ICreateMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_ICreateMcpFeatureCollectionCommandMutation_CreateMcpFeatureCollection_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204924,9 +205302,9 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); @@ -204947,7 +205325,7 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteOpenApiCollectionByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204959,16 +205337,16 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake return null; } - var deleteOpenApiCollectionByIdErrors = new global::System.Collections.Generic.List(); + var createMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - deleteOpenApiCollectionByIdErrors.Add(Deserialize_NonNullableIDeleteOpenApiCollectionByIdErrorData(child)); + createMcpFeatureCollectionErrors.Add(Deserialize_NonNullableICreateMcpFeatureCollectionErrorData(child)); } - return deleteOpenApiCollectionByIdErrors; + return createMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData Deserialize_NonNullableIDeleteOpenApiCollectionByIdErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateMcpFeatureCollectionErrorData Deserialize_NonNullableICreateMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -204981,9 +205359,9 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) @@ -204997,13 +205375,13 @@ public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListOpenApiCollectionCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ListMcpFeatureCollectionCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public ListMcpFeatureCollectionCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); @@ -205012,11 +205390,11 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ListOpenApiCollectionCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new ListMcpFeatureCollectionCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) @@ -205034,7 +205412,7 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, openApiCollections: Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mcpFeatureCollections: Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollections"))); } if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) @@ -205240,7 +205618,7 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205253,15 +205631,15 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData(typename, edges: Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData(typename, edges: Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205273,16 +205651,16 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati return null; } - var apiOpenApiCollectionsEdges = new global::System.Collections.Generic.List(); + var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - apiOpenApiCollectionsEdges.Add(Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(child)); + apiMcpFeatureCollectionsEdges.Add(Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(child)); } - return apiOpenApiCollectionsEdges; + return apiMcpFeatureCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205295,9 +205673,9 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiOpenApiCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -205318,7 +205696,7 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205331,15 +205709,15 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListMcpFeatureCollectionCommandQuery_Node_McpFeatureCollections_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205393,27 +205771,29 @@ public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperati // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class PublishMcpFeatureCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public PublishMcpFeatureCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new PublishOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishOpenApiCollection"))); + return new PublishMcpFeatureCollectionCommandMutationResultInfo(Deserialize_NonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishMcpFeatureCollection"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData Deserialize_NonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData Deserialize_NonNullableIPublishMcpFeatureCollectionCommandMutation_PublishMcpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205426,9 +205806,9 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishMcpFeatureCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishMcpFeatureCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishMcpFeatureCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -205449,7 +205829,7 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishMcpFeatureCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205461,16 +205841,16 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO return null; } - var publishOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + var publishMcpFeatureCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishOpenApiCollectionErrors.Add(Deserialize_NonNullableIPublishOpenApiCollectionErrorData(child)); + publishMcpFeatureCollectionErrors.Add(Deserialize_NonNullableIPublishMcpFeatureCollectionErrorData(child)); } - return publishOpenApiCollectionErrors; + return publishMcpFeatureCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData Deserialize_NonNullableIPublishOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishMcpFeatureCollectionErrorData Deserialize_NonNullableIPublishMcpFeatureCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205488,9 +205868,9 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionNotFoundErrorData(typename, mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) @@ -205498,9 +205878,14 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("OpenApiCollectionVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), mcpFeatureCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollectionId"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -205524,7 +205909,7 @@ public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IO // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishOpenApiCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder + public partial class PublishMcpFeatureCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; @@ -205532,7 +205917,7 @@ public partial class PublishOpenApiCollectionCommandSubscriptionBuilder : global private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public PublishMcpFeatureCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); @@ -205543,14 +205928,14 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new PublishOpenApiCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIOpenApiCollectionVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onOpenApiCollectionVersionPublishingUpdate"))); + return new PublishMcpFeatureCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIMcpFeatureCollectionVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onMcpFeatureCollectionVersionPublishingUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData Deserialize_NonNullableIOpenApiCollectionVersionPublishResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishResultData Deserialize_NonNullableIMcpFeatureCollectionVersionPublishResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205563,14 +205948,14 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OpenApiCollectionVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) @@ -205631,7 +206016,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205643,16 +206028,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var openApiCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionVersionPublishErrors.Add(Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorData(child)); + mcpFeatureCollectionVersionPublishErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorData(child)); } - return openApiCollectionVersionPublishErrors; + return mcpFeatureCollectionVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionVersionPublishErrorData Deserialize_NonNullableIMcpFeatureCollectionVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205670,9 +206055,9 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) @@ -205693,7 +206078,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205705,16 +206090,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - return openApiCollectionValidationCollections; + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205727,15 +206112,15 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205748,15 +206133,15 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205768,16 +206153,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); + mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); } - return openApiCollectionValidationEntitys; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205790,20 +206175,20 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205815,16 +206200,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); } - return openApiCollectionValidationEntityErrors; + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205837,14 +206222,14 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } - if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -205865,7 +206250,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205877,16 +206262,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return null; } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - return openApiCollectionValidationDocumentErrorLocations; + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -205899,9 +206284,9 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); @@ -205999,13 +206384,13 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206026,7 +206411,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206041,13 +206426,13 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206062,7 +206447,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -206089,7 +206474,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return @strings; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206104,13 +206489,13 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206125,13 +206510,13 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206146,13 +206531,13 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -206209,7 +206594,17 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) @@ -206222,14 +206617,203 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } + + return openApiCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); + } + + return openApiCollectionValidationEntitys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + } + + if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + } + + return openApiCollectionValidationEntityErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } + + if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + } + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); @@ -207031,7 +207615,7 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207043,16 +207627,16 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); } - return mcpFeatureCollectionValidationCollections; + return mcpFeatureCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207065,15 +207649,156 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + } + + return openApiCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); + } + + return schemaDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + } + + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListPersonalAccessTokenCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListPersonalAccessTokenCommandQueryResultInfo(Deserialize_IListPersonalAccessTokenCommandQuery_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_IListPersonalAccessTokenCommandQuery_Me(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207086,15 +207811,57 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, personalAccessTokens: Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personalAccessTokens"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessTokensConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData(typename, edges: Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var personalAccessTokensEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + personalAccessTokensEdges.Add(Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(child)); + } + + return personalAccessTokensEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207106,16 +207873,255 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessTokensEdge", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _stringParser.Parse(obj.Value.GetString()!); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _dateTimeParser.Parse(obj.Value.GetString()!); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } + + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + return _stringParser.Parse(obj.Value.GetString()!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreatePersonalAccessTokenCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CreatePersonalAccessTokenCommandMutationResultInfo(Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createPersonalAccessToken"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("CreatePersonalAccessTokenPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData(typename, result: Deserialize_ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result")), errors: Deserialize_ICreatePersonalAccessTokenErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? Deserialize_ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessTokenWithSecret", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData(typename, token: Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "token")), secret: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "secret"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _iDParser.Parse(obj.Value.GetString()!); + } + + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _dateTimeParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreatePersonalAccessTokenErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var createPersonalAccessTokenErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + createPersonalAccessTokenErrors.Add(Deserialize_NonNullableICreatePersonalAccessTokenErrorData(child)); } - return mcpFeatureCollectionValidationEntitys; + return createPersonalAccessTokenErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData Deserialize_NonNullableICreatePersonalAccessTokenErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207128,20 +208134,43 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } + } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class RevokePersonalAccessTokenCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new RevokePersonalAccessTokenCommandMutationResultInfo(Deserialize_NonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "revokePersonalAccessToken"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData Deserialize_NonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207153,16 +208182,88 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("RevokePersonalAccessTokenPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData(typename, personalAccessToken: Deserialize_IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personalAccessToken")), errors: Deserialize_IRevokePersonalAccessTokenErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Deserialize_IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _iDParser.Parse(obj.Value.GetString()!); + } + + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _dateTimeParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IRevokePersonalAccessTokenErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var revokePersonalAccessTokenErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + revokePersonalAccessTokenErrors.Add(Deserialize_NonNullableIRevokePersonalAccessTokenErrorData(child)); } - return mcpFeatureCollectionValidationEntityErrors; + return revokePersonalAccessTokenErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData Deserialize_NonNullableIRevokePersonalAccessTokenErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207175,20 +208276,102 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersonalAccessTokenNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class UploadOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public UploadOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new UploadOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadOpenApiCollection"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData Deserialize_NonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UploadOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData(typename, openApiCollectionVersion: Deserialize_IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionVersion")), errors: Deserialize_IUploadOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? Deserialize_IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _iDParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207200,252 +208383,365 @@ public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShak return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var uploadOpenApiCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + uploadOpenApiCollectionErrors.Add(Deserialize_NonNullableIUploadOpenApiCollectionErrorData(child)); + } + + return uploadOpenApiCollectionErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData Deserialize_NonNullableIUploadOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidOpenApiCollectionArchiveError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidOpenApiCollectionArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListOpenApiCollectionCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ListOpenApiCollectionCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListOpenApiCollectionCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, openApiCollections: Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollections"))); + } + + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + } + + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); + } + + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); + } + + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); + } + + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); + } + + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); + } + + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); + } + + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + } + + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); + } + + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); + } + + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + } + + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + } + + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - return mcpFeatureCollectionValidationDocumentErrorLocations; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - return mcpFeatureCollectionDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - return openApiCollectionDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - return schemaDeploymentErrors; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UploadOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } + if (!obj.HasValue) + { + return null; + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UploadOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadOpenApiCollection"))); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiOpenApiCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData(typename, edges: Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData Deserialize_NonNullableIUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListOpenApiCollectionCommandQuery_Node_OpenApiCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UploadOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + var apiOpenApiCollectionsEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionPayloadData(typename, openApiCollectionVersion: Deserialize_IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionVersion")), errors: Deserialize_IUploadOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + apiOpenApiCollectionsEdges.Add(Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(child)); } - throw new global::System.NotSupportedException(); + return apiOpenApiCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? Deserialize_IUploadOpenApiCollectionCommandMutation_UploadOpenApiCollection_OpenApiCollectionVersion(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiOpenApiCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -207463,31 +208759,31 @@ public UploadOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var uploadOpenApiCollectionErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - uploadOpenApiCollectionErrors.Add(Deserialize_NonNullableIUploadOpenApiCollectionErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return uploadOpenApiCollectionErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadOpenApiCollectionErrorData Deserialize_NonNullableIUploadOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListOpenApiCollectionCommandQuery_Node_OpenApiCollections_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207500,58 +208796,70 @@ public UploadOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOp } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } + + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("InvalidOpenApiCollectionArchiveError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidOpenApiCollectionArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class PublishOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public PublishOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ValidateOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateOpenApiCollection"))); + return new PublishOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishOpenApiCollection"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData Deserialize_NonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData Deserialize_NonNullableIPublishOpenApiCollectionCommandMutation_PublishOpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207564,9 +208872,9 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidateOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishOpenApiCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -207587,7 +208895,7 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207599,16 +208907,16 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I return null; } - var validateOpenApiCollectionErrors = new global::System.Collections.Generic.List(); + var publishOpenApiCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - validateOpenApiCollectionErrors.Add(Deserialize_NonNullableIValidateOpenApiCollectionErrorData(child)); + publishOpenApiCollectionErrors.Add(Deserialize_NonNullableIPublishOpenApiCollectionErrorData(child)); } - return validateOpenApiCollectionErrors; + return publishOpenApiCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData Deserialize_NonNullableIValidateOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishOpenApiCollectionErrorData Deserialize_NonNullableIPublishOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207636,6 +208944,16 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("OpenApiCollectionVersionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionNotFoundErrorData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } @@ -207657,29 +208975,33 @@ public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.I // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateOpenApiCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder + public partial class PublishOpenApiCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _directiveLocationParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public PublishOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); + _schemaChangeSeverityParser = serializerResolver.GetLeafValueParser("SchemaChangeSeverity") ?? throw new global::System.ArgumentException("No serializer for type `SchemaChangeSeverity` found."); + _directiveLocationParser = serializerResolver.GetLeafValueParser("DirectiveLocation") ?? throw new global::System.ArgumentException("No serializer for type `DirectiveLocation` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ValidateOpenApiCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIOpenApiCollectionVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onOpenApiCollectionVersionValidationUpdate"))); + return new PublishOpenApiCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIOpenApiCollectionVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onOpenApiCollectionVersionPublishingUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData Deserialize_NonNullableIOpenApiCollectionVersionValidationResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishResultData Deserialize_NonNullableIOpenApiCollectionVersionPublishResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207692,14 +209014,14 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OpenApiCollectionVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) @@ -207707,9 +209029,24 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTaskApproved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + } + + if (typename?.Equals("ProcessingTaskIsQueued", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData(typename, queued: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queued")), queuePosition: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queuePosition"))); + } + + if (typename?.Equals("ProcessingTaskIsReady", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData(typename, ready: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "ready"))); + } + + if (typename?.Equals("WaitForApproval", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), deployment: Deserialize_IDeploymentData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployment"))); } throw new global::System.NotSupportedException(); @@ -207745,7 +209082,7 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207757,16 +209094,16 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha throw new global::System.ArgumentNullException(); } - var openApiCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); + var openApiCollectionVersionPublishErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionVersionValidationErrors.Add(Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorData(child)); + openApiCollectionVersionPublishErrors.Add(Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorData(child)); } - return openApiCollectionVersionValidationErrors; + return openApiCollectionVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionPublishErrorData Deserialize_NonNullableIOpenApiCollectionVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207779,14 +209116,14 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationArchiveError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) @@ -207807,7 +209144,7 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207822,13 +209159,13 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207953,7 +209290,7 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) @@ -207979,7 +209316,7 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -207994,13 +209331,13 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208035,31 +209372,70 @@ public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberrySha return _intParser.Parse(obj.Value.GetInt32()!); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreatePersonalAccessTokenCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - } + if (!obj.HasValue) + { + return null; + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { - return new CreatePersonalAccessTokenCommandMutationResultInfo(Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createPersonalAccessToken"))); + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + } + + return clientDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208072,15 +209448,15 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreatePersonalAccessTokenPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenPayloadData(typename, result: Deserialize_ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "result")), errors: Deserialize_ICreatePersonalAccessTokenErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? Deserialize_ICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208093,15 +209469,36 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessTokenWithSecret", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData(typename, token: Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "token")), secret: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "secret"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData Deserialize_NonNullableICreatePersonalAccessTokenCommandMutation_CreatePersonalAccessToken_Result_Token(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); + } + + return persistedQueryValidationFaileds; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208114,15 +209511,15 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208134,10 +209531,16 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + @strings.Add(Deserialize_NonNullableString(child)); + } + + return @strings; } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208149,10 +209552,37 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); + } + + return persistedQueryErrors; } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreatePersonalAccessTokenErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208164,16 +209594,16 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I return null; } - var createPersonalAccessTokenErrors = new global::System.Collections.Generic.List(); + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - createPersonalAccessTokenErrors.Add(Deserialize_NonNullableICreatePersonalAccessTokenErrorData(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - return createPersonalAccessTokenErrors; + return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreatePersonalAccessTokenErrorData Deserialize_NonNullableICreatePersonalAccessTokenErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208186,68 +209616,119 @@ public CreatePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); + } + + return fusionConfigurationDeploymentErrors; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListPersonalAccessTokenCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - } + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { - return new ListPersonalAccessTokenCommandQueryResultInfo(Deserialize_IListPersonalAccessTokenCommandQuery_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + } + + return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_IListPersonalAccessTokenCommandQuery_Me(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, personalAccessTokens: Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personalAccessTokens"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208260,36 +209741,36 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessTokensConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData(typename, edges: Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var personalAccessTokensEdges = new global::System.Collections.Generic.List(); + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - personalAccessTokensEdges.Add(Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(child)); + mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); } - return personalAccessTokensEdges; + return mcpFeatureCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208302,15 +209783,20 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessTokensEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208322,10 +209808,16 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + } + + return mcpFeatureCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208338,30 +209830,41 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + } + + return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListPersonalAccessTokenCommandQuery_Me_PersonalAccessTokens_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208374,15 +209877,15 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208394,48 +209897,118 @@ public ListPersonalAccessTokenCommandQueryBuilder(global::StrawberryShake.IOpera throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); + } + + return schemaChangeLogEntrys; } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); + } + + if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + throw new global::System.NotSupportedException(); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class RevokePersonalAccessTokenCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - } + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { - return new RevokePersonalAccessTokenCommandMutationResultInfo(Deserialize_NonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "revokePersonalAccessToken"))); + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var directiveChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); + } + + return directiveChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData Deserialize_NonNullableIRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208448,36 +210021,61 @@ public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("RevokePersonalAccessTokenPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenPayloadData(typename, personalAccessToken: Deserialize_IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personalAccessToken")), errors: Deserialize_IRevokePersonalAccessTokenErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); + } + + if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Deserialize_IRevokePersonalAccessTokenCommandMutation_RevokePersonalAccessToken_PersonalAccessToken(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersonalAccessToken", global::System.StringComparison.Ordinal) ?? false) + var argumentChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), description: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "description")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), expiresAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "expiresAt"))); + argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); } - throw new global::System.NotSupportedException(); + return argumentChanges; } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208489,10 +210087,26 @@ public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208504,31 +210118,31 @@ public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + return _directiveLocationParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IRevokePersonalAccessTokenErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var revokePersonalAccessTokenErrors = new global::System.Collections.Generic.List(); + var enumChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - revokePersonalAccessTokenErrors.Add(Deserialize_NonNullableIRevokePersonalAccessTokenErrorData(child)); + enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); } - return revokePersonalAccessTokenErrors; + return enumChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IRevokePersonalAccessTokenErrorData Deserialize_NonNullableIRevokePersonalAccessTokenErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208541,43 +210155,98 @@ public RevokePersonalAccessTokenCommandMutationBuilder(global::StrawberryShake.I } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("PersonalAccessTokenNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } throw new global::System.NotSupportedException(); } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PublishSchemaVersionBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var enumValueChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + } + + return enumValueChanges; } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { - return new PublishSchemaVersionResultInfo(Deserialize_NonNullableIPublishSchemaVersion_PublishSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishSchema"))); + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var inputObjectChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); + } + + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData Deserialize_NonNullableIPublishSchemaVersion_PublishSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208590,51 +210259,103 @@ public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishSchemaPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var inputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + } + + return inputFieldChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } - return _iDParser.Parse(obj.Value.GetString()!); + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var publishSchemaErrors = new global::System.Collections.Generic.List(); + var interfaceChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishSchemaErrors.Add(Deserialize_NonNullableIPublishSchemaErrorData(child)); + interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); } - return publishSchemaErrors; + return interfaceChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData Deserialize_NonNullableIPublishSchemaErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208647,30 +210368,50 @@ public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); } - if (typename?.Equals("SchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); } - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208682,39 +210423,16 @@ public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionPublishUpdatedBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _directiveLocationParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); - _schemaChangeSeverityParser = serializerResolver.GetLeafValueParser("SchemaChangeSeverity") ?? throw new global::System.ArgumentException("No serializer for type `SchemaChangeSeverity` found."); - _directiveLocationParser = serializerResolver.GetLeafValueParser("DirectiveLocation") ?? throw new global::System.ArgumentException("No serializer for type `DirectiveLocation` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var outputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new OnSchemaVersionPublishUpdatedResultInfo(Deserialize_NonNullableISchemaVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onSchemaVersionPublishingUpdate"))); + return outputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData Deserialize_NonNullableISchemaVersionPublishResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208727,45 +210445,40 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); - } - - if (typename?.Equals("ProcessingTaskApproved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("ProcessingTaskIsQueued", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData(typename, queued: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queued")), queuePosition: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queuePosition"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("ProcessingTaskIsReady", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData(typename, ready: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "ready"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("SchemaVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableISchemaVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - if (typename?.Equals("SchemaVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("WaitForApproval", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), deployment: Deserialize_IDeploymentData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployment"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208777,10 +210490,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var objectChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); + } + + return objectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208792,25 +210511,41 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _processingStateParser.Parse(obj.Value.GetString()!); - } + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } - private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); } - return _intParser.Parse(obj.Value.GetInt32()!); + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208822,16 +210557,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var schemaVersionPublishErrors = new global::System.Collections.Generic.List(); + var scalarChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - schemaVersionPublishErrors.Add(Deserialize_NonNullableISchemaVersionPublishErrorData(child)); + scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return schemaVersionPublishErrors; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData Deserialize_NonNullableISchemaVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208844,59 +210579,61 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); } - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); - } + return unionChanges; + } - if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("SchemaVersionChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData(typename, changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } throw new global::System.NotSupportedException(); @@ -208944,22 +210681,28 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.NotSupportedException(); } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + } + + return mcpFeatureCollectionDeploymentErrors; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208971,16 +210714,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - return mcpFeatureCollectionValidationCollections; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -208992,37 +210735,37 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); } - throw new global::System.NotSupportedException(); + return openApiCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209034,16 +210777,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); + schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); } - return mcpFeatureCollectionValidationEntitys; + return schemaDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209056,41 +210799,70 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - throw new global::System.NotSupportedException(); - } + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - return mcpFeatureCollectionValidationEntityErrors; + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public ValidateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ValidateOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateOpenApiCollection"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData Deserialize_NonNullableIValidateOpenApiCollectionCommandMutation_ValidateOpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209103,20 +210875,30 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidateOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - throw new global::System.NotSupportedException(); + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209128,16 +210910,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return null; } - var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var validateOpenApiCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + validateOpenApiCollectionErrors.Add(Deserialize_NonNullableIValidateOpenApiCollectionErrorData(child)); } - return mcpFeatureCollectionValidationDocumentErrorLocations; + return validateOpenApiCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateOpenApiCollectionErrorData Deserialize_NonNullableIValidateOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209150,15 +210932,30 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209170,16 +210967,35 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - return openApiCollectionValidationCollections; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateOpenApiCollectionCommandSubscriptionBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + public ValidateOpenApiCollectionCommandSubscriptionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ValidateOpenApiCollectionCommandSubscriptionResultInfo(Deserialize_NonNullableIOpenApiCollectionVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onOpenApiCollectionVersionValidationUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationResultData Deserialize_NonNullableIOpenApiCollectionVersionValidationResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209192,36 +211008,30 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollectionVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209233,16 +211043,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); - } - - return openApiCollectionValidationEntitys; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209254,21 +211058,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); - } - - if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); - } - - throw new global::System.NotSupportedException(); + return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209280,16 +211073,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + var openApiCollectionVersionValidationErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + openApiCollectionVersionValidationErrors.Add(Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorData(child)); } - return openApiCollectionValidationEntityErrors; + return openApiCollectionVersionValidationErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionVersionValidationErrorData Deserialize_NonNullableIOpenApiCollectionVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209302,41 +211095,56 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationArchiveError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationArchiveErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); + } + + if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } - return openApiCollectionValidationDocumentErrorLocations; + return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209349,15 +211157,15 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209370,15 +211178,15 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209390,16 +211198,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); } - return persistedQueryValidationFaileds; + return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209412,15 +211220,20 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + } + + if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209432,16 +211245,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - @strings.Add(Deserialize_NonNullableString(child)); + openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); } - return @strings; + return openApiCollectionValidationEntityErrors; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209453,37 +211266,36 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var persistedQueryErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } - return persistedQueryErrors; + if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return null; } - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209495,16 +211307,16 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe return null; } - var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } - return persistedQueryErrorLocations; + return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209517,15 +211329,15 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209537,16 +211349,31 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); - } + return _intParser.Parse(obj.Value.GetInt32()!); + } + } - return schemaChangeLogEntrys; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateOpenApiCollectionCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public CreateOpenApiCollectionCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CreateOpenApiCollectionCommandMutationResultInfo(Deserialize_NonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createOpenApiCollection"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData Deserialize_NonNullableICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209559,60 +211386,36 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CreateOpenApiCollectionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionPayloadData(typename, openApiCollection: Deserialize_ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), errors: Deserialize_ICreateOpenApiCollectionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_ICreateOpenApiCollectionCommandMutation_CreateOpenApiCollection_OpenApiCollection(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); + return null; } - if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return null; } - if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209624,31 +211427,31 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateOpenApiCollectionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var directiveChanges = new global::System.Collections.Generic.List(); + var createOpenApiCollectionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); + createOpenApiCollectionErrors.Add(Deserialize_NonNullableICreateOpenApiCollectionErrorData(child)); } - return directiveChanges; + return createOpenApiCollectionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateOpenApiCollectionErrorData Deserialize_NonNullableICreateOpenApiCollectionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209661,40 +211464,41 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } + throw new global::System.NotSupportedException(); + } + } - if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class DeleteOpenApiCollectionByIdCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public DeleteOpenApiCollectionByIdCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } - if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new DeleteOpenApiCollectionByIdCommandMutationResultInfo(Deserialize_NonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deleteOpenApiCollectionById"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData Deserialize_NonNullableIDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209706,47 +211510,37 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var argumentChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeleteOpenApiCollectionByIdPayload", global::System.StringComparison.Ordinal) ?? false) { - argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdPayloadData(typename, openApiCollection: Deserialize_IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), errors: Deserialize_IDeleteOpenApiCollectionByIdErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - return argumentChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IDeleteOpenApiCollectionByIdCommandMutation_DeleteOpenApiCollectionById_OpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209758,31 +211552,31 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - return _directiveLocationParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IDeleteOpenApiCollectionByIdErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var enumChanges = new global::System.Collections.Generic.List(); + var deleteOpenApiCollectionByIdErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); + deleteOpenApiCollectionByIdErrors.Add(Deserialize_NonNullableIDeleteOpenApiCollectionByIdErrorData(child)); } - return enumChanges; + return deleteOpenApiCollectionByIdErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeleteOpenApiCollectionByIdErrorData Deserialize_NonNullableIDeleteOpenApiCollectionByIdErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -209795,330 +211589,264 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } - - if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), openApiCollectionId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollectionId"))); } - if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } + } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ShowWorkspaceCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + } - var enumValueChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - return enumValueChanges; + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ShowWorkspaceCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); } - return inputObjectChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); } - if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); } - var inputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); } - return inputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - return interfaceChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); } - if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); } - return outputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); } - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); } - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210130,16 +211858,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); - } - - return objectChanges; + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210151,41 +211873,33 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } + } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CreateWorkspaceCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CreateWorkspaceCommandMutationResultInfo(Deserialize_NonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createWorkspace"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData Deserialize_NonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210197,37 +211911,37 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("CreateWorkspacePayload", global::System.StringComparison.Ordinal) ?? false) { - scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData(typename, workspace: Deserialize_ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), errors: Deserialize_ICreateWorkspaceErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - return scalarChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210239,16 +211953,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); - } - - return unionChanges; + return _iDParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210260,130 +211968,145 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateWorkspaceErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return null; } - if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return null; } - if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + var createWorkspaceErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + createWorkspaceErrors.Add(Deserialize_NonNullableICreateWorkspaceErrorData(child)); } - throw new global::System.NotSupportedException(); + return createWorkspaceErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData Deserialize_NonNullableICreateWorkspaceErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } + throw new global::System.NotSupportedException(); + } + } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ListWorkspaceCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - throw new global::System.NotSupportedException(); + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ListWorkspaceCommandQueryResultInfo(Deserialize_IListWorkspaceCommandQuery_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_IListWorkspaceCommandQuery_Me(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) { - clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, workspaces: Deserialize_IListWorkspaceCommandQuery_Me_Workspaces(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaces"))); } - return clientDeploymentErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Deserialize_IListWorkspaceCommandQuery_Me_Workspaces(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData(typename, edges: Deserialize_IListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + var workspacesEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); + workspacesEdges.Add(Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(child)); } - return fusionConfigurationDeploymentErrors; + return workspacesEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210396,35 +212119,15 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); - } - - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); - } - - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } - - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210436,16 +212139,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); - } - - return mcpFeatureCollectionDeploymentErrors; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210458,15 +212155,15 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210478,16 +212175,10 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe throw new global::System.ArgumentNullException(); } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); - } - - return openApiCollectionDeploymentErrors; + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210500,110 +212191,118 @@ public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationRe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - return schemaDeploymentErrors; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, workspaces: Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaces"))); } - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return null; } - if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData(typename, edges: Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return null; } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return null; } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + var workspacesEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + workspacesEdges.Add(Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(child)); } - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UploadSchemaBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UploadSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UploadSchemaResultInfo(Deserialize_NonNullableIUploadSchema_UploadSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadSchema"))); + return workspacesEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData Deserialize_NonNullableIUploadSchema_UploadSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210616,36 +212315,30 @@ public UploadSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory? Deserialize_IUploadSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var uploadSchemaErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - uploadSchemaErrors.Add(Deserialize_NonNullableIUploadSchemaErrorData(child)); + throw new global::System.ArgumentNullException(); } - return uploadSchemaErrors; + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData Deserialize_NonNullableIUploadSchemaErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210694,53 +212387,55 @@ public UploadSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory + public partial class PublishSchemaVersionBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public PublishSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ValidateSchemaVersionResultInfo(Deserialize_NonNullableIValidateSchemaVersion_ValidateSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateSchema"))); + return new PublishSchemaVersionResultInfo(Deserialize_NonNullableIPublishSchemaVersion_PublishSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishSchema"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData Deserialize_NonNullableIValidateSchemaVersion_ValidateSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData Deserialize_NonNullableIPublishSchemaVersion_PublishSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210753,9 +212448,9 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidateSchemaPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishSchemaPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IPublishSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -210776,7 +212471,7 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPublishSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210788,16 +212483,16 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData return null; } - var validateSchemaErrors = new global::System.Collections.Generic.List(); + var publishSchemaErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - validateSchemaErrors.Add(Deserialize_NonNullableIValidateSchemaErrorData(child)); + publishSchemaErrors.Add(Deserialize_NonNullableIPublishSchemaErrorData(child)); } - return validateSchemaErrors; + return publishSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData Deserialize_NonNullableIValidateSchemaErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IPublishSchemaErrorData Deserialize_NonNullableIPublishSchemaErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210815,14 +212510,14 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("SchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); } if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) @@ -210830,6 +212525,11 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } @@ -210851,7 +212551,7 @@ public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultData // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class OnSchemaVersionValidationUpdatedBuilder : global::StrawberryShake.OperationResultBuilder + public partial class OnSchemaVersionPublishUpdatedBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; @@ -210859,7 +212559,7 @@ public partial class OnSchemaVersionValidationUpdatedBuilder : global::Strawberr private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public OnSchemaVersionPublishUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); @@ -210870,14 +212570,14 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new OnSchemaVersionValidationUpdatedResultInfo(Deserialize_NonNullableISchemaVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onSchemaVersionValidationUpdate"))); + return new OnSchemaVersionPublishUpdatedResultInfo(Deserialize_NonNullableISchemaVersionPublishResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onSchemaVersionPublishingUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData Deserialize_NonNullableISchemaVersionValidationResultData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishResultData Deserialize_NonNullableISchemaVersionPublishResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210895,19 +212595,34 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("SchemaVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTaskApproved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableISchemaVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskApprovedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - if (typename?.Equals("SchemaVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTaskIsQueued", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsQueuedData(typename, queued: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queued")), queuePosition: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queuePosition"))); } - if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ProcessingTaskIsReady", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTaskIsReadyData(typename, ready: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "ready"))); + } + + if (typename?.Equals("SchemaVersionPublishFailed", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableISchemaVersionPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("SchemaVersionPublishSuccess", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionPublishSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); + } + + if (typename?.Equals("WaitForApproval", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.WaitForApprovalData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), deployment: Deserialize_IDeploymentData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployment"))); } throw new global::System.NotSupportedException(); @@ -210943,7 +212658,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210955,16 +212670,31 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - var schemaVersionValidationErrors = new global::System.Collections.Generic.List(); + return _intParser.Parse(obj.Value.GetInt32()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaVersionPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var schemaVersionPublishErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - schemaVersionValidationErrors.Add(Deserialize_NonNullableISchemaVersionValidationErrorData(child)); + schemaVersionPublishErrors.Add(Deserialize_NonNullableISchemaVersionPublishErrorData(child)); } - return schemaVersionValidationErrors; + return schemaVersionPublishErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData Deserialize_NonNullableISchemaVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionPublishErrorData Deserialize_NonNullableISchemaVersionPublishErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -210977,6 +212707,11 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); @@ -210984,12 +212719,12 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) @@ -210999,7 +212734,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) @@ -211087,7 +212822,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211102,13 +212837,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211233,7 +212968,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) @@ -211244,7 +212979,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211259,13 +212994,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211286,22 +213021,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.NotSupportedException(); } - private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _intParser.Parse(obj.Value.GetInt32()!); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211316,13 +213036,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211447,7 +213167,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) @@ -211458,7 +213178,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211473,13 +213193,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211500,7 +213220,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211521,7 +213241,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211536,13 +213256,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211557,7 +213277,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -211584,7 +213304,7 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return @strings; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211599,13 +213319,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211620,13 +213340,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211641,13 +213361,13 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -211901,476 +213621,10 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - return _directiveLocationParser.Parse(obj.Value.GetString()!); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var enumChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); - } - - return enumChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } - - if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var enumValueChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); - } - - return enumValueChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); - } - - return inputObjectChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var inputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); - } - - return inputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); - } - - return interfaceChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); - } - - return outputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } - - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); - } - - return objectChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } - - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } - - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); - } - - return scalarChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - throw new global::System.NotSupportedException(); + return _directiveLocationParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212382,16 +213636,16 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - var unionChanges = new global::System.Collections.Generic.List(); + var enumChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); } - return unionChanges; + return enumChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212409,41 +213663,25 @@ public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperatio return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } - if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class UpdateStagesBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new UpdateStagesResultInfo(Deserialize_NonNullableIUpdateStages_UpdateStages(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "updateStages"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData Deserialize_NonNullableIUpdateStages_UpdateStages(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212455,37 +213693,42 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesPayloadData(typename, api: Deserialize_IUpdateStages_UpdateStages_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), errors: Deserialize_IUpdateStagesErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); } - throw new global::System.NotSupportedException(); + return enumValueChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IUpdateStages_UpdateStages_Api(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, stages: Deserialize_NonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stages"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Api_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212497,16 +213740,16 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + var inputObjectChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - stages.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages(child)); + inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); } - return stages; + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212519,30 +213762,30 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212554,16 +213797,16 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + var inputFieldChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - stageConditions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); + inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); } - return stageConditions; + return inputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212576,57 +213819,46 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory? Deserialize_IUpdateStagesErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var updateStagesErrors = new global::System.Collections.Generic.List(); + var interfaceChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - updateStagesErrors.Add(Deserialize_NonNullableIUpdateStagesErrorData(child)); + interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); } - return updateStagesErrors; + return interfaceChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IUpdateStagesErrorData Deserialize_NonNullableIUpdateStagesErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212639,51 +213871,50 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - var stages = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) { - stages.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - return stages; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212695,58 +213926,62 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), publishedSchema: Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedSchema")), publishedClients: Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedClients"))); + outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); } - throw new global::System.NotSupportedException(); + return outputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData? Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishedSchemaVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedSchemaVersionData(typename, version: Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "version"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - throw new global::System.NotSupportedException(); - } + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Deserialize_IUpdateStages_UpdateStages_Errors_Stages_PublishedSchema_Version(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClientsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212758,16 +213993,16 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + var objectChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishedClients.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(child)); + objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); } - return publishedClients; + return objectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212780,36 +214015,40 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212821,16 +214060,16 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory(); + var scalarChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - publishedClientVersions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(child)); + scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return publishedClientVersions; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIUpdateStages_UpdateStages_Errors_Stages_PublishedClients_PublishedVersions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -212843,278 +214082,254 @@ public UpdateStagesBuilder(global::StrawberryShake.IOperationResultDataFactory Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); + unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); } - throw new global::System.NotSupportedException(); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListStagesQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ListStagesQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return unionChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, stages: Deserialize_NonNullableIListStagesQuery_Node_StagesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stages"))); - } - - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); - } - - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); - } - - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); + return null; } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + return null; } - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); + clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); } - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); - } + return clientDeploymentErrors; + } - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); + fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); } - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); - } + return fusionConfigurationDeploymentErrors; + } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); } - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) + return mcpFeatureCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIListStagesQuery_Node_StagesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213126,16 +214341,16 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor throw new global::System.ArgumentNullException(); } - var stages = new global::System.Collections.Generic.List(); + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - stages.Add(Deserialize_NonNullableIListStagesQuery_Node_Stages(child)); + openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); } - return stages; + return openApiCollectionDeploymentErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData Deserialize_NonNullableIListStagesQuery_Node_Stages(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213148,15 +214363,15 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), displayName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "displayName")), conditions: Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "conditions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213168,10 +214383,16 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); + } + + return schemaDeploymentErrors; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_ConditionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213183,52 +214404,40 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor throw new global::System.ArgumentNullException(); } - var stageConditions = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - stageConditions.Add(Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - return stageConditions; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IStageConditionData Deserialize_NonNullableIUpdateStages_UpdateStages_Api_Stages_Conditions(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("AfterStageCondition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.AfterStageConditionData(typename, afterStage: Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "afterStage"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IUpdateStages_UpdateStages_Api_Stages_Conditions_AfterStage(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -213237,27 +214446,29 @@ public ListStagesQueryBuilder(global::StrawberryShake.IOperationResultDataFactor // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CreateWorkspaceCommandMutationBuilder : global::StrawberryShake.OperationResultBuilder + public partial class UploadSchemaBuilder : global::StrawberryShake.OperationResultBuilder { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public UploadSchemaBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new CreateWorkspaceCommandMutationResultInfo(Deserialize_NonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createWorkspace"))); + return new UploadSchemaResultInfo(Deserialize_NonNullableIUploadSchema_UploadSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "uploadSchema"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData Deserialize_NonNullableICreateWorkspaceCommandMutation_CreateWorkspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData Deserialize_NonNullableIUploadSchema_UploadSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213270,15 +214481,15 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CreateWorkspacePayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UploadSchemaPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspacePayloadData(typename, workspace: Deserialize_ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), errors: Deserialize_ICreateWorkspaceErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UploadSchemaPayloadData(typename, schemaVersion: Deserialize_IUploadSchema_UploadSchema_SchemaVersion(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaVersion")), errors: Deserialize_IUploadSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateWorkspaceCommandMutation_CreateWorkspace_Workspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Deserialize_IUploadSchema_UploadSchema_SchemaVersion(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213291,9 +214502,9 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id"))); } throw new global::System.NotSupportedException(); @@ -213314,22 +214525,7 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateWorkspaceErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IUploadSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213341,16 +214537,16 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR return null; } - var createWorkspaceErrors = new global::System.Collections.Generic.List(); + var uploadSchemaErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - createWorkspaceErrors.Add(Deserialize_NonNullableICreateWorkspaceErrorData(child)); + uploadSchemaErrors.Add(Deserialize_NonNullableIUploadSchemaErrorData(child)); } - return createWorkspaceErrors; + return uploadSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICreateWorkspaceErrorData Deserialize_NonNullableICreateWorkspaceErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUploadSchemaErrorData Deserialize_NonNullableIUploadSchemaErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213363,14 +214559,29 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR } var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); + } + + if (typename?.Equals("ConcurrentOperationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ConcurrentOperationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("DuplicatedTagError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DuplicatedTagErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("ValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); @@ -213379,50 +214590,50 @@ public CreateWorkspaceCommandMutationBuilder(global::StrawberryShake.IOperationR // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ListWorkspaceCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class ValidateSchemaVersionBuilder : global::StrawberryShake.OperationResultBuilder { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; + public ValidateSchemaVersionBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new ListWorkspaceCommandQueryResultInfo(Deserialize_IListWorkspaceCommandQuery_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); + return new ValidateSchemaVersionResultInfo(Deserialize_NonNullableIValidateSchemaVersion_ValidateSchema(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateSchema"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_IListWorkspaceCommandQuery_Me(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData Deserialize_NonNullableIValidateSchemaVersion_ValidateSchema(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidateSchemaPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, workspaces: Deserialize_IListWorkspaceCommandQuery_Me_Workspaces(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaces"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateSchemaPayloadData(typename, id: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), errors: Deserialize_IValidateSchemaErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Deserialize_IListWorkspaceCommandQuery_Me_Workspaces(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213434,16 +214645,10 @@ public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData(typename, edges: Deserialize_IListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); - } - - throw new global::System.NotSupportedException(); + return _iDParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IListWorkspaceCommandQuery_Me_Workspaces_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateSchemaErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213455,16 +214660,16 @@ public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult return null; } - var workspacesEdges = new global::System.Collections.Generic.List(); + var validateSchemaErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - workspacesEdges.Add(Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(child)); + validateSchemaErrors.Add(Deserialize_NonNullableIValidateSchemaErrorData(child)); } - return workspacesEdges; + return validateSchemaErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateSchemaErrorData Deserialize_NonNullableIValidateSchemaErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213477,66 +214682,35 @@ public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("StageNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag"))); } - return _stringParser.Parse(obj.Value.GetString()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_Edges_Node(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ApiNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), apiId: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiId"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIListWorkspaceCommandQuery_Me_Workspaces_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213548,119 +214722,75 @@ public ListWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - return _stringParser.Parse(obj.Value.GetString()!); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class OnSchemaVersionValidationUpdatedBuilder : global::StrawberryShake.OperationResultBuilder { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _processingStateParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _schemaChangeSeverityParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _directiveLocationParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public OnSchemaVersionValidationUpdatedBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _processingStateParser = serializerResolver.GetLeafValueParser("ProcessingState") ?? throw new global::System.ArgumentException("No serializer for type `ProcessingState` found."); + _schemaChangeSeverityParser = serializerResolver.GetLeafValueParser("SchemaChangeSeverity") ?? throw new global::System.ArgumentException("No serializer for type `SchemaChangeSeverity` found."); + _directiveLocationParser = serializerResolver.GetLeafValueParser("DirectiveLocation") ?? throw new global::System.ArgumentException("No serializer for type `DirectiveLocation` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultInfo(Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "me"))); + return new OnSchemaVersionValidationUpdatedResultInfo(Deserialize_NonNullableISchemaVersionValidationResultData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "onSchemaVersionValidationUpdate"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationResultData Deserialize_NonNullableISchemaVersionValidationResultData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Viewer", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OperationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ViewerData(typename, workspaces: Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaces"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("SchemaVersionValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationFailedData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), errors: Deserialize_NonNullableISchemaVersionValidationErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaVersionValidationSuccess", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionValidationSuccessData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspacesConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ValidationInProgress", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData(typename, edges: Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidationInProgressData(typename, state: Deserialize_NonNullableProcessingState(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "state"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - return null; - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - return null; - } - - var workspacesEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - workspacesEdges.Add(Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(child)); - } - - return workspacesEdges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213672,16 +214802,10 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::Strawberr throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("WorkspacesEdge", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); - } - - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.ProcessingState Deserialize_NonNullableProcessingState(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213693,10 +214817,10 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::Strawberr throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + return _processingStateParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaVersionValidationErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213708,16 +214832,16 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::Strawberr throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + var schemaVersionValidationErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); + schemaVersionValidationErrors.Add(Deserialize_NonNullableISchemaVersionValidationErrorData(child)); } - throw new global::System.NotSupportedException(); + return schemaVersionValidationErrors; } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaVersionValidationErrorData Deserialize_NonNullableISchemaVersionValidationErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -213729,290 +214853,317 @@ public SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder(global::Strawberr throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISetDefaultWorkspaceCommand_SelectWorkspace_Query_Me_Workspaces_PageInfo(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } - throw new global::System.NotSupportedException(); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ShowWorkspaceCommandQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ShowWorkspaceCommandQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ProcessingTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ProcessingTimeoutErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ReadyTimeoutError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.ReadyTimeoutErrorData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaVersionChangeViolationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionChangeViolationErrorData(typename, changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnexpectedProcessingError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnexpectedProcessingErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + var graphQLSchemaErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); + graphQLSchemaErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(child)); } - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) + return graphQLSchemaErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Errors(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("GraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code"))); } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); + return null; } - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + return null; } - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + return _stringParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + return mcpFeatureCollectionValidationCollections; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData(typename, mcpFeatureCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollection")), entities: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); + return null; } - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); + return null; } - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationEntitys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); + mcpFeatureCollectionValidationEntitys.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(child)); } - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) + return mcpFeatureCollectionValidationEntitys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationPrompt", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationPromptData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationTool", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationToolData(typename, errors: Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); + mcpFeatureCollectionValidationEntityErrors.Add(Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(child)); } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + return mcpFeatureCollectionValidationEntityErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionValidationEntityErrorData Deserialize_NonNullableIMcpFeatureCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); + return null; } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); + return null; } - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) + return mcpFeatureCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), personal: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "personal"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Int32 Deserialize_NonNullableInt32(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214024,10 +215175,10 @@ public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult throw new global::System.ArgumentNullException(); } - return _iDParser.Parse(obj.Value.GetString()!); + return _intParser.Parse(obj.Value.GetInt32()!); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214039,58 +215190,37 @@ public ShowWorkspaceCommandQueryBuilder(global::StrawberryShake.IOperationResult throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectApiPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new SelectApiPromptQueryResultInfo(Deserialize_ISelectApiPromptQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); + return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ISelectApiPromptQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apis: Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apis"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData(typename, openApiCollection: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "openApiCollection")), entities: Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "entities"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214103,36 +215233,36 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData(typename, edges: Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var apisEdges = new global::System.Collections.Generic.List(); + var openApiCollectionValidationEntitys = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - apisEdges.Add(Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(child)); + openApiCollectionValidationEntitys.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityData(child)); } - return apisEdges; + return openApiCollectionValidationEntitys; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityData Deserialize_NonNullableIOpenApiCollectionValidationEntityData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214145,15 +215275,20 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApisEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationEndpoint", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEndpointData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), httpMethod: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "httpMethod")), route: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "route"))); + } + + if (typename?.Equals("OpenApiCollectionValidationModel", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationModelData(typename, errors: Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214165,10 +215300,16 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var openApiCollectionValidationEntityErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationEntityErrors.Add(Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(child)); + } + + return openApiCollectionValidationEntityErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionValidationEntityErrorData Deserialize_NonNullableIOpenApiCollectionValidationEntityErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214181,15 +215322,41 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } + + if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationEntityValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + } + + return openApiCollectionValidationDocumentErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214201,16 +215368,16 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - var @strings = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationDocumentErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - @strings.Add(Deserialize_NonNullableString(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - return @strings; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Workspace(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214223,15 +215390,15 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214243,16 +215410,16 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) + var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } - throw new global::System.NotSupportedException(); + return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableICreateApiCommandMutation_PushWorkspaceChanges_Changes_Result_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214265,15 +215432,15 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214285,10 +215452,16 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + @strings.Add(Deserialize_NonNullableString(child)); + } + + return @strings; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214300,56 +215473,37 @@ public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataF throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + var persistedQueryErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } - throw new global::System.NotSupportedException(); + return persistedQueryErrors; } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class PageClientVersionDetailQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new PageClientVersionDetailQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214361,237 +215515,294 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } - if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) + return persistedQueryErrorLocations; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryErrorLocation", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, versions: Deserialize_IPageClientVersionDetailQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData(typename, column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); } - if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + var schemaChangeLogEntrys = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); + schemaChangeLogEntrys.Add(Deserialize_NonNullableISchemaChangeLogEntryData(child)); } - if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) + return schemaChangeLogEntrys; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaChangeLogEntryData Deserialize_NonNullableISchemaChangeLogEntryData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DirectiveModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("EnumModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InputObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("InterfaceModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ObjectModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ObjectModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ScalarModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ScalarModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeSystemMemberAddedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } - if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeSystemMemberModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity"))); } - if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeSystemMemberRemovedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeSystemMemberRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } - if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnionModifiedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionModifiedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.SchemaChangeSeverity Deserialize_NonNullableSchemaChangeSeverity(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) + return _schemaChangeSeverityParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIDirectiveChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) + var directiveChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); + directiveChanges.Add(Deserialize_NonNullableIDirectiveChangeData(child)); } - if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) + return directiveChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IDirectiveChangeData Deserialize_NonNullableIDirectiveChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } - if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DirectiveLocationAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DirectiveLocationRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DirectiveLocationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), location: Deserialize_NonNullableDirectiveLocation(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "location"))); } - if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) + var argumentChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); + argumentChanges.Add(Deserialize_NonNullableIArgumentChangeData(child)); } - if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) + return argumentChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IArgumentChangeData Deserialize_NonNullableIArgumentChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); } - if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } - if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.DirectiveLocation Deserialize_NonNullableDirectiveLocation(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _directiveLocationParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IPageClientVersionDetailQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + var enumChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, pageInfo: Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo")), edges: Deserialize_IPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges"))); + enumChanges.Add(Deserialize_NonNullableIEnumChangeData(child)); } - throw new global::System.NotSupportedException(); + return enumChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumChangeData Deserialize_NonNullableIEnumChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214604,15 +215815,30 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("EnumValueAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); + } + + if (typename?.Equals("EnumValueChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), changes: Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("EnumValueRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnumValueRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate"))); } throw new global::System.NotSupportedException(); } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIEnumValueChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214624,46 +215850,63 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes throw new global::System.ArgumentNullException(); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); + var enumValueChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + } + + return enumValueChanges; } - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var clientVersionEdges = new global::System.Collections.Generic.List(); + var inputObjectChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientVersionEdges.Add(Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(child)); + inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); } - return clientVersionEdges; + return inputObjectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214676,15 +215919,30 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214696,10 +215954,16 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var inputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + } + + return inputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214712,15 +215976,25 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214732,10 +216006,16 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var interfaceChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); + } + + return interfaceChanges; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214747,16 +216027,51 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes throw new global::System.ArgumentNullException(); } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } - return publishedClientVersions; + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214768,127 +216083,150 @@ public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationRes throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) + var outputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); } - throw new global::System.NotSupportedException(); + return outputFieldChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } - throw new global::System.NotSupportedException(); - } - } + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectClientPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - } + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new SelectClientPromptQueryResultInfo(Deserialize_ISelectClientPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectClientPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + var objectChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, clients: Deserialize_ISelectClientPromptQuery_ApiById_Clients(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clients"))); + objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); } - throw new global::System.NotSupportedException(); + return objectChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Deserialize_ISelectClientPromptQuery_ApiById_Clients(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData(typename, edges: Deserialize_ISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var clientsEdges = new global::System.Collections.Generic.List(); + var scalarChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - clientsEdges.Add(Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges(child)); + scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); } - return clientsEdges; + return scalarChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214901,15 +216239,15 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214921,10 +216259,16 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + } + + return unionChanges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -214937,99 +216281,157 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); } throw new global::System.NotSupportedException(); } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CancelFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public CancelFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Api(global::System.Text.Json.JsonElement? obj) + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CancelFusionConfigurationPublishResultInfo(Deserialize_NonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cancelFusionConfigurationComposition"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData Deserialize_NonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CancelFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_ICancelFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICancelFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var @strings = new global::System.Collections.Generic.List(); + var cancelFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - @strings.Add(Deserialize_NonNullableString(child)); + cancelFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableICancelFusionConfigurationCompositionErrorData(child)); } - return @strings; + return cancelFusionConfigurationCompositionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData Deserialize_NonNullableICancelFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var clientVersionEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - clientVersionEdges.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(child)); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - return clientVersionEdges; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class CommitFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new CommitFusionConfigurationPublishResultInfo(Deserialize_NonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "commitFusionConfigurationPublish"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData Deserialize_NonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215042,36 +216444,36 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CommitFusionConfigurationPublishPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData(typename, errors: Deserialize_ICommitFusionConfigurationPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICommitFusionConfigurationPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) + var commitFusionConfigurationPublishErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); + commitFusionConfigurationPublishErrors.Add(Deserialize_NonNullableICommitFusionConfigurationPublishErrorData(child)); } - throw new global::System.NotSupportedException(); + return commitFusionConfigurationPublishErrors; } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData Deserialize_NonNullableICommitFusionConfigurationPublishErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215083,10 +216485,26 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa throw new global::System.ArgumentNullException(); } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215098,16 +216516,31 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa throw new global::System.ArgumentNullException(); } - var publishedClientVersions = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - publishedClientVersions.Add(Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(child)); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - return publishedClientVersions; + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class StartFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new StartFusionConfigurationPublishResultInfo(Deserialize_NonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startFusionConfigurationComposition"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData Deserialize_NonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215120,15 +216553,15 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("StartFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_IStartFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_ICreateClientCommandMutation_CreateClient_Client_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IStartFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215140,16 +216573,16 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) + var startFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + startFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableIStartFusionConfigurationCompositionErrorData(child)); } - throw new global::System.NotSupportedException(); + return startFusionConfigurationCompositionErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableICreateClientCommandMutation_CreateClient_Client_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData Deserialize_NonNullableIStartFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215162,45 +216595,25 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); - } - - throw new global::System.NotSupportedException(); - } - - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) - { - throw new global::System.ArgumentNullException(); - } - - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } - return _stringParser.Parse(obj.Value.GetString()!); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215212,13 +216625,7 @@ public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDa throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); - } - - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } } @@ -215229,12 +216636,14 @@ public partial class BeginFusionConfigurationPublishBuilder : global::Strawberry private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; public BeginFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); } protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } @@ -215339,6 +216748,11 @@ public BeginFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); } + if (typename?.Equals("InvalidSourceMetadataInputError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidSourceMetadataInputErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + throw new global::System.NotSupportedException(); } @@ -215642,17 +217056,17 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); } if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); } if (typename?.Equals("SchemaVersionChangeViolationError", global::System.StringComparison.Ordinal) ?? false) @@ -215668,7 +217082,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215683,13 +217097,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var mcpFeatureCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); + mcpFeatureCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); } return mcpFeatureCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215814,7 +217228,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("McpFeatureCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } if (typename?.Equals("McpFeatureCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) @@ -215825,7 +217239,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215840,13 +217254,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var mcpFeatureCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); + mcpFeatureCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); } return mcpFeatureCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215882,7 +217296,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake return _intParser.Parse(obj.Value.GetInt32()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -215897,13 +217311,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var openApiCollectionValidationCollections = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(child)); + openApiCollectionValidationCollections.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(child)); } return openApiCollectionValidationCollections; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationCollectionData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216028,7 +217442,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("OpenApiCollectionValidationDocumentError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorData(typename, code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } if (typename?.Equals("OpenApiCollectionValidationEntityValidationError", global::System.StringComparison.Ordinal) ?? false) @@ -216039,7 +217453,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1NonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216054,13 +217468,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var openApiCollectionValidationDocumentErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(child)); + openApiCollectionValidationDocumentErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(child)); } return openApiCollectionValidationDocumentErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationDocumentErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_Locations_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216081,7 +217495,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216102,7 +217516,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216117,13 +217531,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var persistedQueryValidationFaileds = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(child)); + persistedQueryValidationFaileds.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(child)); } return persistedQueryValidationFaileds; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216138,7 +217552,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryValidationFailed", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationFailedData(typename, deployedTags: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deployedTags")), message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), hash: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hash")), errors: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); } throw new global::System.NotSupportedException(); @@ -216165,7 +217579,7 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake return @strings; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216180,13 +217594,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var persistedQueryErrors = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(child)); + persistedQueryErrors.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(child)); } return persistedQueryErrors; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216201,13 +217615,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var typename = obj.Value.GetProperty("__typename").GetString(); if (typename?.Equals("PersistedQueryError", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), code: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "code")), path: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), locations: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "locations"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_LocationsNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216222,13 +217636,13 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var persistedQueryErrorLocations = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(child)); + persistedQueryErrorLocations.Add(Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(child)); } return persistedQueryErrorLocations; } - private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryErrorLocationData Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Queries_Errors_Locations(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216557,13 +217971,957 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake var enumValueChanges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + enumValueChanges.Add(Deserialize_NonNullableIEnumValueChangeData(child)); + } + + return enumValueChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var inputObjectChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); + } + + return inputObjectChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var inputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + } + + return inputFieldChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var interfaceChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); + } + + return interfaceChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var outputFieldChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + } + + return outputFieldChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + } + + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var objectChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); + } + + return objectChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + } + + if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + } + + if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var scalarChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + } + + return scalarChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var unionChanges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + } + + return unionChanges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + } + + if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var clientDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + } + + return clientDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); + } + + return fusionConfigurationDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + } + + return mcpFeatureCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + } + + return openApiCollectionDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); + } + + return schemaDeploymentErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionValidationUpdated_OnClientVersionValidationUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + } + + if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + } + + if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + } + + if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); + } + + if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class ValidateFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + public ValidateFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new ValidateFusionConfigurationPublishResultInfo(Deserialize_NonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateFusionConfigurationComposition"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData Deserialize_NonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ValidateFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_IValidateFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var validateFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + validateFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableIValidateFusionConfigurationCompositionErrorData(child)); + } + + return validateFusionConfigurationCompositionErrors; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData Deserialize_NonNullableIValidateFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + return _stringParser.Parse(obj.Value.GetString()!); + } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SelectMockSchemaPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRIParser; + public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); + _uRIParser = serializerResolver.GetLeafValueParser("URI") ?? throw new global::System.ArgumentException("No serializer for type `URI` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new SelectMockSchemaPromptQueryResultInfo(Deserialize_ISelectMockSchemaPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectMockSchemaPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mockSchemas: Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchemas"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData(typename, edges: Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + return null; + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + return null; + } + + var mockSchemasEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + mockSchemasEdges.Add(Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(child)); } - return enumValueChanges; + return mockSchemasEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.IEnumValueChangeData Deserialize_NonNullableIEnumValueChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216576,20 +218934,15 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216601,16 +218954,10 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var inputObjectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - inputObjectChanges.Add(Deserialize_NonNullableIInputObjectChangeData(child)); - } - - return inputObjectChanges; + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputObjectChangeData Deserialize_NonNullableIInputObjectChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216623,30 +218970,30 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("InputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + throw new global::System.ArgumentNullException(); } - throw new global::System.NotSupportedException(); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216658,16 +219005,16 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var inputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - inputFieldChanges.Add(Deserialize_NonNullableIInputFieldChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } - return inputFieldChanges; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInputFieldChangeData Deserialize_NonNullableIInputFieldChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216680,25 +219027,15 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); - } - - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); - } - - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIInterfaceChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216710,16 +219047,10 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var interfaceChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - interfaceChanges.Add(Deserialize_NonNullableIInterfaceChangeData(child)); - } - - return interfaceChanges; + return _uRIParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IInterfaceChangeData Deserialize_NonNullableIInterfaceChangeData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -216732,340 +219063,312 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); - } + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return null; } - if (typename?.Equals("PossibleTypeAdded", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return null; } - if (typename?.Equals("PossibleTypeRemoved", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PossibleTypeRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); - } + return _stringParser.Parse(obj.Value.GetString()!); + } + } - throw new global::System.NotSupportedException(); + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class PageClientVersionDetailQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public PageClientVersionDetailQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new PageClientVersionDetailQueryResultInfo(Deserialize_INodeData(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.INodeData? Deserialize_INodeData(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var outputFieldChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - outputFieldChanges.Add(Deserialize_NonNullableIOutputFieldChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename); } - return outputFieldChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IOutputFieldChangeData Deserialize_NonNullableIOutputFieldChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("ApiDocument", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiDocumentData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("ApiKey", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ArgumentAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, versions: Deserialize_IPageClientVersionDetailQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); } - if (typename?.Equals("ArgumentChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), changes: Deserialize_NonNullableIArgumentChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientChangeLogData(typename); } - if (typename?.Equals("ArgumentRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ArgumentRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename); } - if (typename?.Equals("DeprecatedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DeprecatedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), deprecationReason: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "deprecationReason"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename); } - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("CoordinateClientUsageMetrics", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.CoordinateClientUsageMetricsData(typename); } - if (typename?.Equals("TypeChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Environment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.TypeChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), oldType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "oldType")), newType: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "newType"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIObjectChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("FusionConfigurationChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename); } - var objectChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLDirectiveArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - objectChanges.Add(Deserialize_NonNullableIObjectChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveArgumentDefinitionData(typename); } - return objectChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IObjectChangeData Deserialize_NonNullableIObjectChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLDirectiveDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLDirectiveDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLEnumTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumTypeDefinitionData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLEnumValueDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLEnumValueDefinitionData(typename); } - if (typename?.Equals("FieldAddedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldAddedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectFieldDefinitionData(typename); } - if (typename?.Equals("FieldRemovedChange", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInputObjectTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FieldRemovedChangeData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInputObjectTypeDefinitionData(typename); } - if (typename?.Equals("InterfaceImplementationAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldArgumentDefinitionData(typename); } - if (typename?.Equals("InterfaceImplementationRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InterfaceImplementationRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), interfaceName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "interfaceName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceFieldDefinitionData(typename); } - if (typename?.Equals("OutputFieldChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("GraphQLInterfaceTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OutputFieldChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), coordinate: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "coordinate")), fieldName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "fieldName")), changes: Deserialize_NonNullableIOutputFieldChangeDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLInterfaceTypeDefinitionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5NonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLObjectFieldArgumentDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldArgumentDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("GraphQLObjectFieldDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLObjectFieldDefinitionData(typename); } - var scalarChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("GraphQLScalarTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - scalarChanges.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLScalarTypeDefinitionData(typename); } - return scalarChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IScalarChangeData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes_5(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("GraphQLUnionTypeDefinition", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GraphQLUnionTypeDefinitionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("Group", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.GroupData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIUnionChangeDataNonNullableArray(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("McpFeatureCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionChangeLogData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename); } - var unionChanges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + if (typename?.Equals("McpFeatureCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - unionChanges.Add(Deserialize_NonNullableIUnionChangeData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionVersionData(typename); } - return unionChanges; - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IUnionChangeData Deserialize_NonNullableIUnionChangeData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OpenApiCollection", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("OpenApiCollectionChangeLog", global::System.StringComparison.Ordinal) ?? false) { - throw new global::System.ArgumentNullException(); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionChangeLogData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("DescriptionChanged", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.DescriptionChangedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), old: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "old")), @new: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "new"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename); } - if (typename?.Equals("UnionMemberAdded", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("OpenApiCollectionVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberAddedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData(typename); } - if (typename?.Equals("UnionMemberRemoved", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Organization", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnionMemberRemovedData(typename, severity: Deserialize_NonNullableSchemaChangeSeverity(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "severity")), typeName: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "typeName"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationData(typename); } - throw new global::System.NotSupportedException(); - } - - private global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deserialize_IDeploymentData(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) + if (typename?.Equals("OrganizationMember", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.OrganizationMemberData(typename); } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + if (typename?.Equals("SchemaChangeLog", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeLogData(typename); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ClientDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename); } - if (typename?.Equals("FusionConfigurationDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationDeploymentData(typename, errors: Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename); } - if (typename?.Equals("McpFeatureCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("User", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.UserData(typename); } - if (typename?.Equals("OpenApiCollectionDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionDeploymentData(typename, errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename); } - if (typename?.Equals("SchemaDeployment", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("WorkspaceDocument", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaDeploymentData(typename, errors: Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceDocumentData(typename); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_ErrorsNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IPageClientVersionDetailQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var clientDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) { - clientDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, pageInfo: Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo")), edges: Deserialize_IPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges"))); } - return clientDeploymentErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IClientDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217078,15 +219381,15 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIFusionConfigurationDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217098,57 +219401,46 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var fusionConfigurationDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - fusionConfigurationDeploymentErrors.Add(Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(child)); - } - - return fusionConfigurationDeploymentErrors; + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IFusionConfigurationDeploymentErrorData Deserialize_NonNullableIFusionConfigurationDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); - } - - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); + return null; } - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } + return _stringParser.Parse(obj.Value.GetString()!); + } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IPageClientVersionDetailQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return null; } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return null; } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + clientVersionEdges.Add(Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(child)); } - throw new global::System.NotSupportedException(); + return clientVersionEdges; } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIPageClientVersionDetailQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217160,16 +219452,16 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var mcpFeatureCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - mcpFeatureCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } - return mcpFeatureCollectionDeploymentErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IMcpFeatureCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_2(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217181,16 +219473,10 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } - - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3NonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217202,16 +219488,16 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var openApiCollectionDeploymentErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - openApiCollectionDeploymentErrors.Add(Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } - return openApiCollectionDeploymentErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IOpenApiCollectionDeploymentErrorData Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_3(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217223,16 +219509,10 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); - } - - throw new global::System.NotSupportedException(); + return _dateTimeParser.Parse(obj.Value.GetString()!); } - private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableISchemaDeploymentErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217244,16 +219524,16 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake throw new global::System.ArgumentNullException(); } - var schemaDeploymentErrors = new global::System.Collections.Generic.List(); + var publishedClientVersions = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - schemaDeploymentErrors.Add(Deserialize_NonNullableISchemaDeploymentErrorData(child)); + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - return schemaDeploymentErrors; + return publishedClientVersions; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ISchemaDeploymentErrorData Deserialize_NonNullableISchemaDeploymentErrorData(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217266,39 +219546,30 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PersistedQueryValidationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PersistedQueryValidationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), client: Deserialize_IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_Client(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "client")), queries: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Errors_QueriesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "queries"))); - } - - if (typename?.Equals("SchemaChangeViolationError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaChangeViolationErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), changes: Deserialize_NonNullableISchemaChangeLogEntryDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "changes"))); - } - - if (typename?.Equals("OperationsAreNotAllowedError", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OperationsAreNotAllowedErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); } - if (typename?.Equals("SchemaVersionSyntaxError", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionSyntaxErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), column: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "column")), position: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "position")), line: Deserialize_NonNullableInt32(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "line"))); - } + throw new global::System.NotSupportedException(); + } - if (typename?.Equals("InvalidGraphQLSchemaError", global::System.StringComparison.Ordinal) ?? false) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidGraphQLSchemaErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message")), errors: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_ErrorsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return null; } - if (typename?.Equals("OpenApiCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_CollectionsNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return null; } - if (typename?.Equals("McpFeatureCollectionValidationError", global::System.StringComparison.Ordinal) ?? false) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionValidationErrorData(typename, collections: Deserialize_NonNullableIOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1NonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "collections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); @@ -217307,46 +219578,52 @@ public OnFusionConfigurationPublishingTaskChangedBuilder(global::StrawberryShake // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CancelFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder + public partial class SelectClientPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public CancelFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; + public SelectClientPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new CancelFusionConfigurationPublishResultInfo(Deserialize_NonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cancelFusionConfigurationComposition"))); + return new SelectClientPromptQueryResultInfo(Deserialize_ISelectClientPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData Deserialize_NonNullableICancelFusionConfigurationPublish_CancelFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectClientPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CancelFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_ICancelFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, clients: Deserialize_ISelectClientPromptQuery_ApiById_Clients(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "clients"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICancelFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Deserialize_ISelectClientPromptQuery_ApiById_Clients(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217358,41 +219635,52 @@ public CancelFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio return null; } - var cancelFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientsConnection", global::System.StringComparison.Ordinal) ?? false) { - cancelFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableICancelFusionConfigurationCompositionErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData(typename, edges: Deserialize_ISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } - return cancelFusionConfigurationCompositionErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICancelFusionConfigurationCompositionErrorData Deserialize_NonNullableICancelFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectClientPromptQuery_ApiById_Clients_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + var clientsEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + clientsEdges.Add(Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges(child)); } - if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + return clientsEdges; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientsEdge", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -217412,31 +219700,8 @@ public CancelFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio return _stringParser.Parse(obj.Value.GetString()!); } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class CommitFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new CommitFusionConfigurationPublishResultInfo(Deserialize_NonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "commitFusionConfigurationPublish"))); - } - private global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData Deserialize_NonNullableICommitFusionConfigurationPublish_CommitFusionConfigurationPublish(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217449,15 +219714,15 @@ public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("CommitFusionConfigurationPublishPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Client", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.CommitFusionConfigurationPublishPayloadData(typename, errors: Deserialize_ICommitFusionConfigurationPublishErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), api: Deserialize_IShowClientCommandQuery_Node_Api_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "api")), versions: Deserialize_IShowClientCommandQuery_Node_Versions(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "versions"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ICommitFusionConfigurationPublishErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_IShowClientCommandQuery_Node_Api_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217469,16 +219734,16 @@ public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio return null; } - var commitFusionConfigurationPublishErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - commitFusionConfigurationPublishErrors.Add(Deserialize_NonNullableICommitFusionConfigurationPublishErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path"))); } - return commitFusionConfigurationPublishErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ICommitFusionConfigurationPublishErrorData Deserialize_NonNullableICommitFusionConfigurationPublishErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217490,62 +219755,58 @@ public CommitFusionConfigurationPublishBuilder(global::StrawberryShake.IOperatio throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + @strings.Add(Deserialize_NonNullableString(child)); } - if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + return @strings; + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Deserialize_IShowClientCommandQuery_Node_Versions(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersionConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData(typename, edges: Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_IShowClientCommandQuery_Node_Versions_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class StartFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var clientVersionEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + { + clientVersionEdges.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(child)); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new StartFusionConfigurationPublishResultInfo(Deserialize_NonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startFusionConfigurationComposition"))); + return clientVersionEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData Deserialize_NonNullableIStartFusionConfigurationPublish_StartFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217558,36 +219819,36 @@ public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("StartFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ClientVersionEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.StartFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_IStartFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IStartFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var startFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ClientVersion", global::System.StringComparison.Ordinal) ?? false) { - startFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableIStartFusionConfigurationCompositionErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), tag: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "tag")), publishedTo: Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "publishedTo"))); } - return startFusionConfigurationCompositionErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IStartFusionConfigurationCompositionErrorData Deserialize_NonNullableIStartFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217599,26 +219860,31 @@ public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) + return _dateTimeParser.Parse(obj.Value.GetString()!); + } + + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedToNonNullableArray(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + throw new global::System.ArgumentNullException(); } - if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + var publishedClientVersions = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + publishedClientVersions.Add(Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(child)); } - throw new global::System.NotSupportedException(); + return publishedClientVersions; } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217630,75 +219896,58 @@ public StartFusionConfigurationPublishBuilder(global::StrawberryShake.IOperation throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class ValidateFusionConfigurationPublishBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uploadParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - public ValidateFusionConfigurationPublishBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _uploadParser = serializerResolver.GetLeafValueParser("Upload") ?? throw new global::System.ArgumentException("No serializer for type `Upload` found."); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PublishedClientVersion", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PublishedClientVersionData(typename, stage: Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "stage"))); + } - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new ValidateFusionConfigurationPublishResultInfo(Deserialize_NonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "validateFusionConfigurationComposition"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData Deserialize_NonNullableIValidateFusionConfigurationPublish_ValidateFusionConfigurationComposition(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.StageData? Deserialize_IShowClientCommandQuery_Node_Versions_Edges_Node_PublishedTo_Stage(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ValidateFusionConfigurationCompositionPayload", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Stage", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationCompositionPayloadData(typename, errors: Deserialize_IValidateFusionConfigurationCompositionErrorDataNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "errors"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.StageData(typename, name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_IValidateFusionConfigurationCompositionErrorDataNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableIShowClientCommandQuery_Node_Versions_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } - var validateFusionConfigurationCompositionErrors = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - validateFusionConfigurationCompositionErrors.Add(Deserialize_NonNullableIValidateFusionConfigurationCompositionErrorData(child)); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor"))); } - return validateFusionConfigurationCompositionErrors; + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.IValidateFusionConfigurationCompositionErrorData Deserialize_NonNullableIValidateFusionConfigurationCompositionErrorData(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217710,26 +219959,25 @@ public ValidateFusionConfigurationPublishBuilder(global::StrawberryShake.IOperat throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UnauthorizedOperation", global::System.StringComparison.Ordinal) ?? false) - { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UnauthorizedOperationData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); - } + return _booleanParser.Parse(obj.Value.GetBoolean()!); + } - if (typename?.Equals("FusionConfigurationRequestNotFoundError", global::System.StringComparison.Ordinal) ?? false) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.FusionConfigurationRequestNotFoundErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - if (typename?.Equals("InvalidProcessingStateTransitionError", global::System.StringComparison.Ordinal) ?? false) + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.InvalidProcessingStateTransitionErrorData(typename, message: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "message"))); + return null; } - throw new global::System.NotSupportedException(); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectClientPromptQuery_ApiById_Clients_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217741,35 +219989,43 @@ public ValidateFusionConfigurationPublishBuilder(global::StrawberryShake.IOperat throw new global::System.ArgumentNullException(); } - return _stringParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + } + + throw new global::System.NotSupportedException(); } } // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMcpFeatureCollectionPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder + public partial class SelectApiPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder { private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _versionParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + public SelectApiPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) { ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _versionParser = serializerResolver.GetLeafValueParser("Version") ?? throw new global::System.ArgumentException("No serializer for type `Version` found."); _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); } - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) { - return new SelectMcpFeatureCollectionPromptQueryResultInfo(Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + return new SelectApiPromptQueryResultInfo(Deserialize_ISelectApiPromptQuery_WorkspaceById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspaceById"))); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_ISelectApiPromptQuery_WorkspaceById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217782,15 +220038,15 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mcpFeatureCollections: Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollections"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, apis: Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apis"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217803,15 +220059,15 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApisConnection", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData(typename, edges: Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData(typename, edges: Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectApiPromptQuery_WorkspaceById_Apis_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217823,16 +220079,16 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe return null; } - var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); + var apisEdges = new global::System.Collections.Generic.List(); foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - apiMcpFeatureCollectionsEdges.Add(Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(child)); + apisEdges.Add(Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(child)); } - return apiMcpFeatureCollectionsEdges; + return apisEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217845,9 +220101,9 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApisEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApisEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); @@ -217868,7 +220124,7 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_Edges_Node(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217881,15 +220137,15 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), path: Deserialize_NonNullableStringNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "path")), workspace: Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "workspace")), settings: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "settings"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList Deserialize_NonNullableStringNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -217901,138 +220157,94 @@ public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOpe throw new global::System.ArgumentNullException(); } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) + var @strings = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); + @strings.Add(Deserialize_NonNullableString(child)); } - throw new global::System.NotSupportedException(); + return @strings; } - private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Deserialize_IShowApiCommandQuery_Node_Workspace_1(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) - { - throw new global::System.ArgumentNullException(); - } - - return _booleanParser.Parse(obj.Value.GetBoolean()!); - } - - private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) - { - if (!obj.HasValue) { return null; } - if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("Workspace", global::System.StringComparison.Ordinal) ?? false) { - return null; + return new global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); } - return _stringParser.Parse(obj.Value.GetString()!); - } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial class SelectMockSchemaPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder - { - private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _dateTimeParser; - private readonly global::StrawberryShake.Serialization.ILeafValueParser _uRLParser; - public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) - { - ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); - _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); - _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); - _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); - _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); - _dateTimeParser = serializerResolver.GetLeafValueParser("DateTime") ?? throw new global::System.ArgumentException("No serializer for type `DateTime` found."); - _uRLParser = serializerResolver.GetLeafValueParser("URL") ?? throw new global::System.ArgumentException("No serializer for type `URL` found."); - } - - protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } - - protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) - { - return new SelectMockSchemaPromptQueryResultInfo(Deserialize_ISelectMockSchemaPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectMockSchemaPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiSettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mockSchemas: Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mockSchemas"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData(typename, schemaRegistry: Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "schemaRegistry"))); } throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData Deserialize_NonNullableIShowApiCommandQuery_Node_Settings_SchemaRegistry(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; + throw new global::System.ArgumentNullException(); } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchemasConnection", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("SchemaRegistrySettings", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData(typename, edges: Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData(typename, treatDangerousAsBreaking: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "treatDangerousAsBreaking")), allowBreakingSchemaChanges: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "allowBreakingSchemaChanges"))); } throw new global::System.NotSupportedException(); } - private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectMockSchemaPromptQuery_ApiById_MockSchemas_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) + private global::System.Boolean Deserialize_NonNullableBoolean(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - return null; + throw new global::System.ArgumentNullException(); } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - return null; - } - - var mockSchemasEdges = new global::System.Collections.Generic.List(); - foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) - { - mockSchemasEdges.Add(Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(child)); + throw new global::System.ArgumentNullException(); } - return mockSchemasEdges; + return _booleanParser.Parse(obj.Value.GetBoolean()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectApiPromptQuery_WorkspaceById_Apis_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -218045,87 +220257,118 @@ public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResu } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchemasEdge", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("PageInfo", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData(typename, hasPreviousPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasPreviousPage")), hasNextPage: Deserialize_NonNullableBoolean(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "hasNextPage")), endCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "endCursor")), startCursor: Deserialize_String(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "startCursor"))); } throw new global::System.NotSupportedException(); } - private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) + private global::System.String? Deserialize_String(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } return _stringParser.Parse(obj.Value.GetString()!); } + } - private global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_Edges_Node(global::System.Text.Json.JsonElement? obj) + // StrawberryShake.CodeGeneration.CSharp.Generators.JsonResultBuilderGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial class SelectMcpFeatureCollectionPromptQueryBuilder : global::StrawberryShake.OperationResultBuilder + { + private readonly global::StrawberryShake.Serialization.ILeafValueParser _iDParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _stringParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _intParser; + private readonly global::StrawberryShake.Serialization.ILeafValueParser _booleanParser; + public SelectMcpFeatureCollectionPromptQueryBuilder(global::StrawberryShake.IOperationResultDataFactory resultDataFactory, global::StrawberryShake.Serialization.ISerializerResolver serializerResolver) + { + ResultDataFactory = resultDataFactory ?? throw new global::System.ArgumentNullException(nameof(resultDataFactory)); + _iDParser = serializerResolver.GetLeafValueParser("ID") ?? throw new global::System.ArgumentException("No serializer for type `ID` found."); + _stringParser = serializerResolver.GetLeafValueParser("String") ?? throw new global::System.ArgumentException("No serializer for type `String` found."); + _intParser = serializerResolver.GetLeafValueParser("Int") ?? throw new global::System.ArgumentException("No serializer for type `Int` found."); + _booleanParser = serializerResolver.GetLeafValueParser("Boolean") ?? throw new global::System.ArgumentException("No serializer for type `Boolean` found."); + } + + protected override global::StrawberryShake.IOperationResultDataFactory ResultDataFactory { get; } + + protected override global::StrawberryShake.IOperationResultDataInfo BuildData(global::System.Text.Json.JsonElement obj) + { + return new SelectMcpFeatureCollectionPromptQueryResultInfo(Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "apiById"))); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("MockSchema", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("Api", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name")), createdAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdAt")), createdBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "createdBy")), modifiedAt: Deserialize_NonNullableDateTimeOffset(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedAt")), modifiedBy: Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "modifiedBy")), downstreamUrl: Deserialize_NonNullableUri(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "downstreamUrl")), url: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "url"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiData(typename, mcpFeatureCollections: Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "mcpFeatureCollections"))); } throw new global::System.NotSupportedException(); } - private global::System.DateTimeOffset Deserialize_NonNullableDateTimeOffset(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - return _dateTimeParser.Parse(obj.Value.GetString()!); + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("ApiMcpFeatureCollectionsConnection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData(typename, edges: Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "edges")), pageInfo: Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "pageInfo"))); + } + + throw new global::System.NotSupportedException(); } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_CreatedBy(global::System.Text.Json.JsonElement? obj) + private global::System.Collections.Generic.IReadOnlyList? Deserialize_ISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_EdgesNonNullableArray(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { - throw new global::System.ArgumentNullException(); + return null; } if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) { - throw new global::System.ArgumentNullException(); + return null; } - var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + var apiMcpFeatureCollectionsEdges = new global::System.Collections.Generic.List(); + foreach (global::System.Text.Json.JsonElement child in obj.Value.EnumerateArray()) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + apiMcpFeatureCollectionsEdges.Add(Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(child)); } - throw new global::System.NotSupportedException(); + return apiMcpFeatureCollectionsEdges; } - private global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData Deserialize_NonNullableICreateMockSchema_CreateMockSchema_MockSchema_ModifiedBy(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -218138,15 +220381,15 @@ public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResu } var typename = obj.Value.GetProperty("__typename").GetString(); - if (typename?.Equals("UserInfo", global::System.StringComparison.Ordinal) ?? false) + if (typename?.Equals("ApiMcpFeatureCollectionsEdge", global::System.StringComparison.Ordinal) ?? false) { - return new global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData(typename, username: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "username"))); + return new global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsEdgeData(typename, cursor: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "cursor")), node: Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "node"))); } throw new global::System.NotSupportedException(); } - private global::System.Uri Deserialize_NonNullableUri(global::System.Text.Json.JsonElement? obj) + private global::System.String Deserialize_NonNullableString(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -218158,10 +220401,31 @@ public SelectMockSchemaPromptQueryBuilder(global::StrawberryShake.IOperationResu throw new global::System.ArgumentNullException(); } - return _uRLParser.Parse(obj.Value.GetString()!); + return _stringParser.Parse(obj.Value.GetString()!); } - private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectMockSchemaPromptQuery_ApiById_MockSchemas_PageInfo(global::System.Text.Json.JsonElement? obj) + private global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_Edges_Node(global::System.Text.Json.JsonElement? obj) + { + if (!obj.HasValue) + { + throw new global::System.ArgumentNullException(); + } + + if (obj.Value.ValueKind == global::System.Text.Json.JsonValueKind.Null) + { + throw new global::System.ArgumentNullException(); + } + + var typename = obj.Value.GetProperty("__typename").GetString(); + if (typename?.Equals("McpFeatureCollection", global::System.StringComparison.Ordinal) ?? false) + { + return new global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData(typename, id: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "id")), name: Deserialize_NonNullableString(global::StrawberryShake.Json.JsonElementExtensions.GetPropertyOrNull(obj, "name"))); + } + + throw new global::System.NotSupportedException(); + } + + private global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData Deserialize_NonNullableISelectMcpFeatureCollectionPromptQuery_ApiById_McpFeatureCollections_PageInfo(global::System.Text.Json.JsonElement? obj) { if (!obj.HasValue) { @@ -218411,34 +220675,60 @@ public SelectOpenApiCollectionPromptQueryBuilder(global::StrawberryShake.IOperat // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateApiKeyPayloadData + public partial record UploadFusionSubgraphPayloadData { - public CreateApiKeyPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? result = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public UploadFusionSubgraphPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? fusionSubgraphVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Result = result; + FusionSubgraphVersion = fusionSubgraphVersion; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? Result { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? FusionSubgraphVersion { get; init; } + 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 ApiKeyWithSecretData + public partial record FusionSubgraphVersionData { - public ApiKeyWithSecretData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? key = default !, global::System.String? secret = default !) + public FusionSubgraphVersionData(global::System.String __typename, global::System.String? id = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Key = key; - Secret = secret; + Id = id; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Key { get; init; } - public global::System.String? Secret { get; init; } + public global::System.String? Id { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IUploadFusionSubgraphErrorData + { + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IErrorData + { + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record InvalidFusionSourceSchemaArchiveErrorData : IUploadFusionSubgraphErrorData, IErrorData + { + public InvalidFusionSourceSchemaArchiveErrorData(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 @@ -218518,13 +220808,6 @@ public partial interface IUpdateStagesErrorData global::System.String __typename { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUploadFusionSubgraphErrorData - { - global::System.String __typename { get; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IUploadSchemaErrorData @@ -218539,13 +220822,6 @@ public partial interface IValidateSchemaErrorData global::System.String __typename { get; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IErrorData - { - global::System.String __typename { get; } - } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiNotFoundErrorData : IBeginFusionConfigurationPublishErrorData, ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, ICreateClientErrorData, ICreateMcpFeatureCollectionErrorData, ICreateMockSchemaErrorData, ICreateOpenApiCollectionErrorData, IDeleteApiByIdErrorData, IPublishSchemaErrorData, IUpdateApiSettingsErrorData, IUpdateStagesErrorData, IUploadFusionSubgraphErrorData, IUploadSchemaErrorData, IValidateSchemaErrorData, IErrorData @@ -218564,111 +220840,86 @@ public partial record ApiNotFoundErrorData : IBeginFusionConfigurationPublishErr // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IRemoveWorkspaceErrorData + public partial interface IUnpublishClientErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IRenameWorkspaceErrorData + public partial interface IUploadClientErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface ISetActiveWorkspaceErrorData + public partial interface IUploadMcpFeatureCollectionErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspaceNotFoundData : ICreateApiKeyErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, ISetActiveWorkspaceErrorData, IErrorData - { - public WorkspaceNotFoundData(global::System.String __typename, global::System.String? message = default !, global::System.String? workspaceId = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - WorkspaceId = workspaceId; - } - - public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? WorkspaceId { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersonalWorkspaceNotSupportedErrorData : ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, IErrorData + public partial interface IUploadOpenApiCollectionErrorData { - public PersonalWorkspaceNotSupportedErrorData(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; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface ICreatePersonalAccessTokenErrorData + public partial interface ISchemaVersionPublishErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface ICreateWorkspaceErrorData + public partial interface IClientVersionPublishErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUpdateFeatureFlagsErrorData + public partial interface IFusionConfigurationPublishingErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUpdateMockSchemaErrorData + public partial interface IOpenApiCollectionVersionPublishErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUpdatePreferencesErrorData + public partial interface IMcpFeatureCollectionVersionPublishErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUpdateThemeSettingsErrorData + public partial interface IProcessingErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidationErrorData : ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, ICreateMockSchemaErrorData, ICreatePersonalAccessTokenErrorData, ICreateWorkspaceErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, IUpdateFeatureFlagsErrorData, IUpdateMockSchemaErrorData, IUpdatePreferencesErrorData, IUpdateThemeSettingsErrorData, IErrorData + public partial record ConcurrentOperationErrorData : IUnpublishClientErrorData, IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IErrorData, ISchemaVersionPublishErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionPublishErrorData, IProcessingErrorData { - public ValidationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public ConcurrentOperationErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; - Errors = errors; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -218706,6 +220957,20 @@ public partial interface ICreateAccountErrorData global::System.String __typename { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreatePersonalAccessTokenErrorData + { + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface ICreateWorkspaceErrorData + { + global::System.String __typename { get; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial interface IDeleteApiKeyErrorData @@ -218813,148 +221078,100 @@ public partial interface IPushWorkspaceChangesErrorData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IRevokePersonalAccessTokenErrorData + public partial interface IRemoveWorkspaceErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IStartFusionConfigurationCompositionErrorData + public partial interface IRenameWorkspaceErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUnpublishClientErrorData + public partial interface IRevokePersonalAccessTokenErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUploadClientErrorData + public partial interface ISetActiveWorkspaceErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUploadMcpFeatureCollectionErrorData + public partial interface IStartFusionConfigurationCompositionErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IUploadOpenApiCollectionErrorData + public partial interface IUpdateFeatureFlagsErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IValidateClientErrorData + public partial interface IUpdateMockSchemaErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IValidateFusionConfigurationCompositionErrorData + public partial interface IUpdatePreferencesErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IValidateMcpFeatureCollectionErrorData + public partial interface IUpdateThemeSettingsErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IValidateOpenApiCollectionErrorData + public partial interface IValidateClientErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UnauthorizedOperationData : IApproveDeploymentErrorData, IBeginFusionConfigurationPublishErrorData, ICancelDeploymentErrorData, ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, ICreateAccountErrorData, ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, ICreateClientErrorData, ICreateMcpFeatureCollectionErrorData, ICreateMockSchemaErrorData, ICreateOpenApiCollectionErrorData, ICreatePersonalAccessTokenErrorData, ICreateWorkspaceErrorData, IDeleteApiByIdErrorData, IDeleteApiKeyErrorData, IDeleteClientByIdErrorData, IDeleteMcpFeatureCollectionByIdErrorData, IDeleteMockSchemaByIdErrorData, IDeleteOpenApiCollectionByIdErrorData, IEnsureTunnelSessionErrorData, IPollClientVersionPublishRequestErrorData, IPollClientVersionValidationRequestErrorData, IPollSchemaVersionPublishRequestErrorData, IPollSchemaVersionValidationRequestErrorData, IPublishClientErrorData, IPublishMcpFeatureCollectionErrorData, IPublishOpenApiCollectionErrorData, IPublishSchemaErrorData, IPushDocumentChangesErrorData, IPushWorkspaceChangesErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, IRevokePersonalAccessTokenErrorData, ISetActiveWorkspaceErrorData, IStartFusionConfigurationCompositionErrorData, IUnpublishClientErrorData, IUpdateApiSettingsErrorData, IUpdateFeatureFlagsErrorData, IUpdateMockSchemaErrorData, IUpdatePreferencesErrorData, IUpdateThemeSettingsErrorData, IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IValidateClientErrorData, IValidateFusionConfigurationCompositionErrorData, IValidateMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IValidateSchemaErrorData, IErrorData - { - public UnauthorizedOperationData(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 RoleNotFoundErrorData : ICreateApiKeyErrorData, IErrorData - { - public RoleNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? roleId = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - RoleId = roleId; - } - - public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? RoleId { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IAuthorizationEventLogPrincipalData + public partial interface IValidateFusionConfigurationCompositionErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IAuthorizationEventLogSubjectData + public partial interface IValidateMcpFeatureCollectionErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface INodeData + public partial interface IValidateOpenApiCollectionErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiKeyData : IAuthorizationEventLogPrincipalData, IAuthorizationEventLogSubjectData, INodeData - { - public ApiKeyData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; - Name = name; - Workspace = workspace; - } - - public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.String? Name { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidationErrorPropertyData + public partial record UnauthorizedOperationData : IApproveDeploymentErrorData, IBeginFusionConfigurationPublishErrorData, ICancelDeploymentErrorData, ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, ICreateAccountErrorData, ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, ICreateClientErrorData, ICreateMcpFeatureCollectionErrorData, ICreateMockSchemaErrorData, ICreateOpenApiCollectionErrorData, ICreatePersonalAccessTokenErrorData, ICreateWorkspaceErrorData, IDeleteApiByIdErrorData, IDeleteApiKeyErrorData, IDeleteClientByIdErrorData, IDeleteMcpFeatureCollectionByIdErrorData, IDeleteMockSchemaByIdErrorData, IDeleteOpenApiCollectionByIdErrorData, IEnsureTunnelSessionErrorData, IPollClientVersionPublishRequestErrorData, IPollClientVersionValidationRequestErrorData, IPollSchemaVersionPublishRequestErrorData, IPollSchemaVersionValidationRequestErrorData, IPublishClientErrorData, IPublishMcpFeatureCollectionErrorData, IPublishOpenApiCollectionErrorData, IPublishSchemaErrorData, IPushDocumentChangesErrorData, IPushWorkspaceChangesErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, IRevokePersonalAccessTokenErrorData, ISetActiveWorkspaceErrorData, IStartFusionConfigurationCompositionErrorData, IUnpublishClientErrorData, IUpdateApiSettingsErrorData, IUpdateFeatureFlagsErrorData, IUpdateMockSchemaErrorData, IUpdatePreferencesErrorData, IUpdateThemeSettingsErrorData, IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IValidateClientErrorData, IValidateFusionConfigurationCompositionErrorData, IValidateMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IValidateSchemaErrorData, IErrorData { - public ValidationErrorPropertyData(global::System.String __typename, global::System.String? message = default !) + public UnauthorizedOperationData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -218966,253 +221183,166 @@ public partial record ValidationErrorPropertyData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IAuthorizationEventLogRealmData - { - global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IAuthorizationEventLogResourceData - { - global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspaceData : IAuthorizationEventLogRealmData, IAuthorizationEventLogResourceData, INodeData - { - public WorkspaceData(global::System.String __typename, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? apiKeys = default !, global::System.String? id = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? apis = default !, global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? environments = default !, global::System.Boolean? personal = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Name = name; - ApiKeys = apiKeys; - Id = id; - Apis = apis; - Environments = environments; - Personal = personal; - } - - public global::System.String __typename { get; init; } - public global::System.String? Name { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? ApiKeys { get; init; } - public global::System.String? Id { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Apis { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? Environments { get; init; } - public global::System.Boolean? Personal { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteApiKeyPayloadData - { - public DeleteApiKeyPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? apiKey = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - ApiKey = apiKey; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? ApiKey { get; init; } - 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 ApiKeyNotFoundErrorData : IDeleteApiKeyErrorData, IErrorData + public partial record DuplicatedTagErrorData : IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IErrorData { - public ApiKeyNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? apiKeyId = default !) + public DuplicatedTagErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; - ApiKeyId = apiKeyId; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } - public global::System.String? ApiKeyId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiKeysConnectionData + public partial record InvalidSourceMetadataInputErrorData : IBeginFusionConfigurationPublishErrorData, IPublishClientErrorData, IPublishMcpFeatureCollectionErrorData, IPublishOpenApiCollectionErrorData, IPublishSchemaErrorData, IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IValidateClientErrorData, IValidateMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IValidateSchemaErrorData, IErrorData { - public ApiKeysConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public InvalidSourceMetadataInputErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Edges = edges; - PageInfo = pageInfo; - } - - public global::System.String __typename { get; init; } - ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } - ///Information to aid in pagination. - public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///An edge in a connection. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiKeysEdgeData - { - public ApiKeysEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? node = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Cursor = cursor; - Node = node; + Message = message; } public global::System.String __typename { get; init; } - ///A cursor for use in pagination. - public global::System.String? Cursor { get; init; } - ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Node { get; init; } + public global::System.String? Message { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///Information about pagination in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PageInfoData + public partial record FusionConfigurationData { - public PageInfoData(global::System.String __typename, global::System.Boolean? hasPreviousPage = default !, global::System.Boolean? hasNextPage = default !, global::System.String? endCursor = default !, global::System.String? startCursor = default !) + public FusionConfigurationData(global::System.String __typename, global::System.String? downloadUrl = default !, global::System.String? tag = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - HasPreviousPage = hasPreviousPage; - HasNextPage = hasNextPage; - EndCursor = endCursor; - StartCursor = startCursor; + DownloadUrl = downloadUrl; + Tag = tag; } public global::System.String __typename { get; init; } - ///Indicates whether more edges exist prior the set defined by the clients arguments. - public global::System.Boolean? HasPreviousPage { get; init; } - ///Indicates whether more edges exist following the set defined by the clients arguments. - public global::System.Boolean? HasNextPage { get; init; } - ///When paginating forwards, the cursor to continue. - public global::System.String? EndCursor { get; init; } - ///When paginating backwards, the cursor to continue. - public global::System.String? StartCursor { get; init; } + public global::System.String? DownloadUrl { get; init; } + public global::System.String? Tag { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PushWorkspaceChangesPayloadData + public partial record CreateMockSchemaPayloadData { - public PushWorkspaceChangesPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? changes = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public CreateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Changes = changes; + MockSchema = mockSchema; Errors = errors; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? MockSchema { get; init; } + 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 WorkspaceChangePayloadData + public partial record MockSchemaData { - public WorkspaceChangePayloadData(global::System.String __typename, global::System.String? referenceId = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? error = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? result = default !) + public MockSchemaData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::System.DateTimeOffset? createdAt = default !, global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? createdBy = default !, global::System.DateTimeOffset? modifiedAt = default !, global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? modifiedBy = default !, global::System.Uri? downstreamUrl = default !, global::System.String? url = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - ReferenceId = referenceId; - Error = error; - Result = result; + Id = id; + Name = name; + CreatedAt = createdAt; + CreatedBy = createdBy; + ModifiedAt = modifiedAt; + ModifiedBy = modifiedBy; + DownstreamUrl = downstreamUrl; + Url = url; } public global::System.String __typename { get; init; } - public global::System.String? ReferenceId { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Error { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Result { get; init; } + public global::System.String? Id { get; init; } + public global::System.String? Name { get; init; } + public global::System.DateTimeOffset? CreatedAt { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? CreatedBy { get; init; } + public global::System.DateTimeOffset? ModifiedAt { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? ModifiedBy { get; init; } + public global::System.Uri? DownstreamUrl { get; init; } + public global::System.String? Url { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ChangeStructureInvalidData : IPushDocumentChangesErrorData, IPushWorkspaceChangesErrorData, IErrorData + public partial record MockSchemaNonUniqueNameErrorData : ICreateMockSchemaErrorData, IUpdateMockSchemaErrorData, IErrorData { - public ChangeStructureInvalidData(global::System.String __typename, global::System.String? message = default !) + public MockSchemaNonUniqueNameErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; + Name = name; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } + public global::System.String? Name { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IWorkspaceChangeErrorData - { - global::System.String __typename { get; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ChangeValidationFailedData : IWorkspaceChangeErrorData, IErrorData + public partial record ValidationErrorData : ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, ICreateMockSchemaErrorData, ICreatePersonalAccessTokenErrorData, ICreateWorkspaceErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, IUpdateFeatureFlagsErrorData, IUpdateMockSchemaErrorData, IUpdatePreferencesErrorData, IUpdateThemeSettingsErrorData, IErrorData { - public ChangeValidationFailedData(global::System.String __typename, global::System.String? message = default !) + public ValidationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; + Errors = errors; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } + 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 HasBeenChangedConflictData : IWorkspaceChangeErrorData, IErrorData + public partial interface IAuthorizationEventLogPrincipalData { - public HasBeenChangedConflictData(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; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record HasBeenDeletedConflictData : IWorkspaceChangeErrorData, IErrorData + public partial record UserInfoData : IAuthorizationEventLogPrincipalData { - public HasBeenDeletedConflictData(global::System.String __typename, global::System.String? message = default !) + public UserInfoData(global::System.String __typename, global::System.String? username = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + Username = username; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::System.String? Username { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record IdentifierCollisionConflictData : IWorkspaceChangeErrorData, IErrorData + public partial record UpdateMockSchemaPayloadData { - public IdentifierCollisionConflictData(global::System.String __typename, global::System.String? message = default !) + public UpdateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + MockSchema = mockSchema; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? MockSchema { get; init; } + 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 UnexpectedErrorOnChangeData : IWorkspaceChangeErrorData, IErrorData + public partial record MockSchemaNotFoundErrorData : IDeleteMockSchemaByIdErrorData, IUpdateMockSchemaErrorData, IErrorData { - public UnexpectedErrorOnChangeData(global::System.String __typename, global::System.String? message = default !) + public MockSchemaNotFoundErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -219224,40 +221354,28 @@ public partial record UnexpectedErrorOnChangeData : IWorkspaceChangeErrorData, I // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspaceNotFoundForChangeData : IWorkspaceChangeErrorData, IErrorData + public partial interface IApiKeyReferenceData { - public WorkspaceNotFoundForChangeData(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; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IWorkspaceChangeResultData + public partial interface IAuthorizationEventLogResourceData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiDocumentData : IWorkspaceChangeResultData, INodeData + public partial interface IWorkspaceChangeResultData { - public ApiDocumentData(global::System.String __typename) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - } - - public global::System.String __typename { get; init; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IApiKeyReferenceData + public partial interface INodeData { global::System.String __typename { get; } } @@ -219266,112 +221384,152 @@ public partial interface IApiKeyReferenceData [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record ApiData : IApiKeyReferenceData, IAuthorizationEventLogResourceData, IWorkspaceChangeResultData, INodeData { - public ApiData(global::System.String __typename, global::System.String? name = default !, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? path = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData? settings = default !, global::System.String? version = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? clients = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? mcpFeatureCollections = default !, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? mockSchemas = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? openApiCollections = default !, global::System.Collections.Generic.IReadOnlyList? stages = default !) + public ApiData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? mockSchemas = default !, global::System.String? name = default !, global::System.Collections.Generic.IReadOnlyList? path = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? clients = default !, global::System.String? id = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData? settings = default !, global::System.String? version = default !, global::System.Collections.Generic.IReadOnlyList? stages = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? mcpFeatureCollections = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? openApiCollections = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + MockSchemas = mockSchemas; Name = name; - Id = id; Path = path; + Clients = clients; + Id = id; Workspace = workspace; Settings = settings; Version = version; - Clients = clients; + Stages = stages; McpFeatureCollections = mcpFeatureCollections; - MockSchemas = mockSchemas; OpenApiCollections = openApiCollections; - Stages = stages; } public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? MockSchemas { get; init; } public global::System.String? Name { get; init; } - public global::System.String? Id { get; init; } public global::System.Collections.Generic.IReadOnlyList? Path { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Clients { get; init; } + public global::System.String? Id { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ApiSettingsData? Settings { get; init; } public global::System.String? Version { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientsConnectionData? Clients { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ApiMcpFeatureCollectionsConnectionData? McpFeatureCollections { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemasConnectionData? MockSchemas { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ApiOpenApiCollectionsConnectionData? OpenApiCollections { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspaceDocumentData : IWorkspaceChangeResultData, INodeData + public partial record MockSchemasConnectionData { - public WorkspaceDocumentData(global::System.String __typename) + public MockSchemasConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Edges = edges; + PageInfo = pageInfo; } public global::System.String __typename { get; init; } + ///A list of edges. + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + ///Information to aid in pagination. + public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record EnvironmentData : IWorkspaceChangeResultData, INodeData + public partial record MockSchemasEdgeData { - public EnvironmentData(global::System.String __typename, global::System.String? name = default !, global::System.String? id = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !) + public MockSchemasEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? node = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Name = name; - Id = id; - Workspace = workspace; + Cursor = cursor; + Node = node; } public global::System.String __typename { get; init; } - public global::System.String? Name { get; init; } - public global::System.String? Id { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } + ///A cursor for use in pagination. + public global::System.String? Cursor { get; init; } + ///The item at the end of the edge. + public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///Information about pagination in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiSettingsData + public partial record PageInfoData { - public ApiSettingsData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? schemaRegistry = default !) + public PageInfoData(global::System.String __typename, global::System.Boolean? hasPreviousPage = default !, global::System.Boolean? hasNextPage = default !, global::System.String? endCursor = default !, global::System.String? startCursor = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - SchemaRegistry = schemaRegistry; + HasPreviousPage = hasPreviousPage; + HasNextPage = hasNextPage; + EndCursor = endCursor; + StartCursor = startCursor; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? SchemaRegistry { get; init; } + ///Indicates whether more edges exist prior the set defined by the clients arguments. + public global::System.Boolean? HasPreviousPage { get; init; } + ///Indicates whether more edges exist following the set defined by the clients arguments. + public global::System.Boolean? HasNextPage { get; init; } + ///When paginating forwards, the cursor to continue. + public global::System.String? EndCursor { get; init; } + ///When paginating backwards, the cursor to continue. + public global::System.String? StartCursor { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record SchemaRegistrySettingsData + public partial record ApiDocumentData : IWorkspaceChangeResultData, INodeData { - public SchemaRegistrySettingsData(global::System.String __typename, global::System.Boolean? treatDangerousAsBreaking = default !, global::System.Boolean? allowBreakingSchemaChanges = default !) + public ApiDocumentData(global::System.String __typename) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - TreatDangerousAsBreaking = treatDangerousAsBreaking; - AllowBreakingSchemaChanges = allowBreakingSchemaChanges; } public global::System.String __typename { get; init; } - public global::System.Boolean? TreatDangerousAsBreaking { get; init; } - public global::System.Boolean? AllowBreakingSchemaChanges { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ClientData : INodeData + public partial interface IAuthorizationEventLogSubjectData { - public ClientData(global::System.String __typename, global::System.String? name = default !, global::System.String? id = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? versions = default !) + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ApiKeyData : IAuthorizationEventLogPrincipalData, IAuthorizationEventLogSubjectData, INodeData + { + public ApiKeyData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Id = id; Name = name; + Workspace = workspace; + } + + public global::System.String __typename { get; init; } + public global::System.String? Id { get; init; } + public global::System.String? Name { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ClientData : INodeData + { + public ClientData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? versions = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Id = id; + Name = name; Api = api; Versions = versions; } public global::System.String __typename { get; init; } - public global::System.String? Name { get; init; } public global::System.String? Id { get; init; } + public global::System.String? Name { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionConnectionData? Versions { get; init; } } @@ -219450,6 +221608,24 @@ public CoordinateClientUsageMetricsData(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 EnvironmentData : IWorkspaceChangeResultData, INodeData + { + public EnvironmentData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Id = id; + Name = name; + Workspace = workspace; + } + + public global::System.String __typename { get; init; } + public global::System.String? Id { get; init; } + public global::System.String? Name { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record FusionConfigurationChangeLogData : IStageChangeLogData, INodeData @@ -219784,6 +221960,13 @@ 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 interface IAuthorizationEventLogRealmData + { + global::System.String __typename { get; } + } + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] public partial record OrganizationData : IAuthorizationEventLogRealmData, IAuthorizationEventLogResourceData, INodeData @@ -219872,102 +222055,38 @@ public UserData(global::System.String __typename) // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteApiByIdPayloadData - { - public DeleteApiByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Api = api; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } - 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 ApiDeletionFailedErrorData : IDeleteApiByIdErrorData, IErrorData - { - public ApiDeletionFailedErrorData(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 - ///A connection to a list of items. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApisConnectionData - { - public ApisConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Edges = edges; - PageInfo = pageInfo; - } - - public global::System.String __typename { get; init; } - ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } - ///Information to aid in pagination. - public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///An edge in a connection. - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApisEdgeData - { - public ApisEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? node = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Cursor = cursor; - Node = node; - } - - public global::System.String __typename { get; init; } - ///A cursor for use in pagination. - public global::System.String? Cursor { get; init; } - ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Node { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UpdateApiSettingsPayloadData + public partial record WorkspaceData : IAuthorizationEventLogRealmData, IAuthorizationEventLogResourceData, INodeData { - public UpdateApiSettingsPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public WorkspaceData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? apis = default !, global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? environments = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? apiKeys = default !, global::System.Boolean? personal = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Api = api; - Errors = errors; + Id = id; + Name = name; + Apis = apis; + Environments = environments; + ApiKeys = apiKeys; + Personal = personal; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Id { get; init; } + public global::System.String? Name { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApisConnectionData? Apis { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentsConnectionData? Environments { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeysConnectionData? ApiKeys { get; init; } + public global::System.Boolean? Personal { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateClientPayloadData + public partial record WorkspaceDocumentData : IWorkspaceChangeResultData, INodeData { - public CreateClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public WorkspaceDocumentData(global::System.String __typename) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Client = client; - Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -220026,136 +222145,128 @@ public partial record PublishedClientVersionData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteClientByIdPayloadData + public partial record UnpublishClientPayloadData { - public DeleteClientByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public UnpublishClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Client = client; + ClientVersion = clientVersion; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? ClientVersion { get; init; } + 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 ClientNotFoundErrorData : IDeleteClientByIdErrorData, IPublishClientErrorData, IUnpublishClientErrorData, IUploadClientErrorData, IValidateClientErrorData, IErrorData + public partial record StageNotFoundErrorData : IBeginFusionConfigurationPublishErrorData, IPublishClientErrorData, IPublishMcpFeatureCollectionErrorData, IPublishOpenApiCollectionErrorData, IPublishSchemaErrorData, IUnpublishClientErrorData, IUpdateStagesErrorData, IValidateClientErrorData, IValidateMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IValidateSchemaErrorData, IErrorData { - public ClientNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? clientId = default !) + public StageNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; - ClientId = clientId; + Name = name; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } - public global::System.String? ClientId { get; init; } + public global::System.String? Name { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ClientsConnectionData + public partial record ClientNotFoundErrorData : IDeleteClientByIdErrorData, IPublishClientErrorData, IUnpublishClientErrorData, IUploadClientErrorData, IValidateClientErrorData, IErrorData { - public ClientsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public ClientNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? clientId = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Edges = edges; - PageInfo = pageInfo; + Message = message; + ClientId = clientId; } public global::System.String __typename { get; init; } - ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } - ///Information to aid in pagination. - public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? ClientId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ClientsEdgeData + public partial record ClientVersionNotFoundErrorData : IPublishClientErrorData, IUnpublishClientErrorData, IErrorData { - public ClientsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? node = default !) + public ClientVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? clientId = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Cursor = cursor; - Node = node; + Tag = tag; + Message = message; + ClientId = clientId; } public global::System.String __typename { get; init; } - ///A cursor for use in pagination. - public global::System.String? Cursor { get; init; } - ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Node { get; init; } + public global::System.String? Tag { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? ClientId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishClientPayloadData + public partial record UploadClientPayloadData { - public PublishClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public UploadClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; + ClientVersion = clientVersion; Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? ClientVersion { get; init; } + 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 StageNotFoundErrorData : IBeginFusionConfigurationPublishErrorData, IPublishClientErrorData, IPublishMcpFeatureCollectionErrorData, IPublishOpenApiCollectionErrorData, IPublishSchemaErrorData, IUnpublishClientErrorData, IUpdateStagesErrorData, IValidateClientErrorData, IValidateMcpFeatureCollectionErrorData, IValidateOpenApiCollectionErrorData, IValidateSchemaErrorData, IErrorData + public partial record InvalidPersistedQueryErrorData : IUploadClientErrorData, IErrorData { - public StageNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) + public InvalidPersistedQueryErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; - Name = name; } public global::System.String __typename { get; init; } public global::System.String? Message { get; init; } - public global::System.String? Name { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ClientVersionNotFoundErrorData : IPublishClientErrorData, IUnpublishClientErrorData, IErrorData + public partial record ValidateClientPayloadData { - public ClientVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? clientId = default !) + public ValidateClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Tag = tag; - Message = message; - ClientId = clientId; + Id = id; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Tag { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? ClientId { get; init; } + public global::System.String? Id { get; init; } + 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 interface IClientVersionPublishResultData + public partial interface IClientVersionValidationResultData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ClientVersionPublishFailedData : IClientVersionPublishResultData + public partial record ClientVersionValidationFailedData : IClientVersionValidationResultData { - public ClientVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public ClientVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); State = state; @@ -220164,14 +222275,14 @@ public partial record ClientVersionPublishFailedData : IClientVersionPublishResu public global::System.String __typename { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + 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 ClientVersionPublishSuccessData : IClientVersionPublishResultData + public partial record ClientVersionValidationSuccessData : IClientVersionValidationResultData { - public ClientVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + public ClientVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); State = state; @@ -220197,7 +222308,7 @@ public partial interface ISchemaVersionPublishResultData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IClientVersionValidationResultData + public partial interface IClientVersionPublishResultData { global::System.String __typename { get; } } @@ -220253,9 +222364,9 @@ public partial record OperationInProgressData : ISchemaVersionValidationResultDa // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ProcessingTaskApprovedData : ISchemaVersionPublishResultData, IClientVersionPublishResultData, IFusionConfigurationPublishingResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData + public partial record ValidationInProgressData : IFusionConfigurationPublishingResultData, IClientVersionValidationResultData, ISchemaVersionValidationResultData, IOpenApiCollectionVersionValidationResultData, IMcpFeatureCollectionVersionValidationResultData { - public ProcessingTaskApprovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + public ValidationInProgressData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); State = state; @@ -220267,103 +222378,83 @@ public partial record ProcessingTaskApprovedData : ISchemaVersionPublishResultDa // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ProcessingTaskIsQueuedData : IFusionConfigurationPublishingResultData, IClientVersionPublishResultData, ISchemaVersionPublishResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData + public partial interface IClientDeploymentErrorData { - public ProcessingTaskIsQueuedData(global::System.String __typename, global::System.String? queued = default !, global::System.Int32? queuePosition = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Queued = queued; - QueuePosition = queuePosition; - State = state; - } - - public global::System.String __typename { get; init; } - ///The name of the current Object type at runtime. - public global::System.String? Queued { get; init; } - public global::System.Int32? QueuePosition { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ProcessingTaskIsReadyData : IFusionConfigurationPublishingResultData, IClientVersionPublishResultData, ISchemaVersionPublishResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData + public partial interface IFusionConfigurationDeploymentErrorData { - public ProcessingTaskIsReadyData(global::System.String __typename, global::System.String? ready = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Ready = ready; - State = state; - } - - public global::System.String __typename { get; init; } - ///The name of the current Object type at runtime. - public global::System.String? Ready { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WaitForApprovalData : ISchemaVersionPublishResultData, IClientVersionPublishResultData, IFusionConfigurationPublishingResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData + public partial interface ISchemaDeploymentErrorData { - public WaitForApprovalData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? deployment = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; - Deployment = deployment; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deployment { get; init; } + global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface ISchemaVersionPublishErrorData + public partial interface IClientVersionValidationErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IClientVersionPublishErrorData + public partial interface ISchemaVersionValidationErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IFusionConfigurationPublishingErrorData + public partial interface IFusionConfigurationValidationErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IOpenApiCollectionVersionPublishErrorData + public partial record PersistedQueryValidationErrorData : IClientDeploymentErrorData, IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData, IClientVersionPublishErrorData, IClientVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData { - global::System.String __typename { get; } + public PersistedQueryValidationErrorData(global::System.String __typename, global::System.String? message = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? queries = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + Client = client; + Queries = queries; + } + + public global::System.String __typename { get; init; } + public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Queries { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IMcpFeatureCollectionVersionPublishErrorData + public partial interface IOpenApiCollectionVersionValidationErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IProcessingErrorData + public partial interface IMcpFeatureCollectionVersionValidationErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ConcurrentOperationErrorData : IUnpublishClientErrorData, IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IErrorData, ISchemaVersionPublishErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionPublishErrorData, IProcessingErrorData + public partial record ProcessingTimeoutErrorData : ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IClientVersionValidationErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData { - public ConcurrentOperationErrorData(global::System.String __typename, global::System.String? message = default !) + public ProcessingTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -220375,170 +222466,235 @@ public partial record ConcurrentOperationErrorData : IUnpublishClientErrorData, // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IClientDeploymentErrorData + public partial record ReadyTimeoutErrorData : IClientVersionPublishErrorData, IClientVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData { - global::System.String __typename { get; } - } + public ReadyTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IFusionConfigurationDeploymentErrorData - { - global::System.String __typename { get; } + 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 interface ISchemaDeploymentErrorData + public partial record UnexpectedProcessingErrorData : ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IClientVersionValidationErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IFusionConfigurationValidationErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData { - global::System.String __typename { get; } + public UnexpectedProcessingErrorData(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 interface IClientVersionValidationErrorData + public partial record PersistedQueryValidationFailedData { - global::System.String __typename { get; } + public PersistedQueryValidationFailedData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? deployedTags = default !, global::System.String? message = default !, global::System.String? hash = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + DeployedTags = deployedTags; + Message = message; + Hash = hash; + Errors = errors; + } + + public global::System.String __typename { get; init; } + public global::System.Collections.Generic.IReadOnlyList? DeployedTags { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? Hash { get; init; } + 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 interface ISchemaVersionValidationErrorData + public partial record PersistedQueryErrorData { - global::System.String __typename { get; } + public PersistedQueryErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? code = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + Code = code; + Path = path; + Locations = locations; + } + + public global::System.String __typename { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? Code { get; init; } + public global::System.String? Path { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IFusionConfigurationValidationErrorData + public partial record PersistedQueryErrorLocationData { - global::System.String __typename { get; } + public PersistedQueryErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Column = column; + Line = line; + } + + public global::System.String __typename { get; init; } + public global::System.Int32? Column { get; init; } + public global::System.Int32? Line { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersistedQueryValidationErrorData : IClientDeploymentErrorData, IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData, IClientVersionPublishErrorData, IClientVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + public partial record DeleteClientByIdPayloadData { - public PersistedQueryValidationErrorData(global::System.String __typename, global::System.String? message = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? queries = default !) + public DeleteClientByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; Client = client; - Queries = queries; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Queries { get; init; } + 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 interface IOpenApiCollectionVersionValidationErrorData + public partial record PublishClientPayloadData { - global::System.String __typename { get; } + public PublishClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Id = id; + Errors = errors; + } + + public global::System.String __typename { get; init; } + public global::System.String? Id { get; init; } + 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 interface IMcpFeatureCollectionVersionValidationErrorData + public partial record ClientVersionPublishFailedData : IClientVersionPublishResultData { - global::System.String __typename { get; } + public ClientVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + State = state; + Errors = errors; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + 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 ProcessingTimeoutErrorData : ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IClientVersionValidationErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData + public partial record ClientVersionPublishSuccessData : IClientVersionPublishResultData { - public ProcessingTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) + public ClientVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + State = state; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ReadyTimeoutErrorData : IClientVersionPublishErrorData, IClientVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationPublishingErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData + public partial record ProcessingTaskApprovedData : ISchemaVersionPublishResultData, IClientVersionPublishResultData, IFusionConfigurationPublishingResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData { - public ReadyTimeoutErrorData(global::System.String __typename, global::System.String? message = default !) + public ProcessingTaskApprovedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + State = state; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UnexpectedProcessingErrorData : ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IClientVersionValidationErrorData, IClientVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IFusionConfigurationValidationErrorData, IOpenApiCollectionVersionPublishErrorData, IOpenApiCollectionVersionValidationErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, IProcessingErrorData + public partial record ProcessingTaskIsQueuedData : IFusionConfigurationPublishingResultData, IClientVersionPublishResultData, ISchemaVersionPublishResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData { - public UnexpectedProcessingErrorData(global::System.String __typename, global::System.String? message = default !) + public ProcessingTaskIsQueuedData(global::System.String __typename, global::System.String? queued = default !, global::System.Int32? queuePosition = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + Queued = queued; + QueuePosition = queuePosition; + State = state; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + ///The name of the current Object type at runtime. + public global::System.String? Queued { get; init; } + public global::System.Int32? QueuePosition { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersistedQueryValidationFailedData + public partial record ProcessingTaskIsReadyData : IFusionConfigurationPublishingResultData, IClientVersionPublishResultData, ISchemaVersionPublishResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData { - public PersistedQueryValidationFailedData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? deployedTags = default !, global::System.String? message = default !, global::System.String? hash = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public ProcessingTaskIsReadyData(global::System.String __typename, global::System.String? ready = default !, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - DeployedTags = deployedTags; - Message = message; - Hash = hash; - Errors = errors; + Ready = ready; + State = state; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? DeployedTags { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? Hash { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + ///The name of the current Object type at runtime. + public global::System.String? Ready { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record SchemaChangeViolationErrorData : IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData + public partial record WaitForApprovalData : ISchemaVersionPublishResultData, IClientVersionPublishResultData, IFusionConfigurationPublishingResultData, IOpenApiCollectionVersionPublishResultData, IMcpFeatureCollectionVersionPublishResultData { - public SchemaChangeViolationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) + public WaitForApprovalData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? deployment = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - Changes = changes; + State = state; + Deployment = deployment; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IDeploymentData? Deployment { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record InvalidGraphQLSchemaErrorData : IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData, ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + public partial interface IMcpFeatureCollectionDeploymentErrorData { - public InvalidGraphQLSchemaErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record McpFeatureCollectionValidationErrorData : IFusionConfigurationDeploymentErrorData, IMcpFeatureCollectionDeploymentErrorData, ISchemaDeploymentErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + { + public McpFeatureCollectionValidationErrorData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? collections = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - Errors = errors; + Collections = collections; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Collections { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -220564,23 +222720,34 @@ public partial record OpenApiCollectionValidationErrorData : IFusionConfiguratio // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IMcpFeatureCollectionDeploymentErrorData + public partial record SchemaChangeViolationErrorData : IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData { - global::System.String __typename { get; } + public SchemaChangeViolationErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + Changes = changes; + } + + public global::System.String __typename { get; init; } + public global::System.String? Message { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationErrorData : IFusionConfigurationDeploymentErrorData, IMcpFeatureCollectionDeploymentErrorData, ISchemaDeploymentErrorData, IMcpFeatureCollectionVersionPublishErrorData, IMcpFeatureCollectionVersionValidationErrorData, ISchemaVersionPublishErrorData, ISchemaVersionValidationErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData + public partial record InvalidGraphQLSchemaErrorData : IFusionConfigurationDeploymentErrorData, ISchemaDeploymentErrorData, ISchemaVersionValidationErrorData, ISchemaVersionPublishErrorData, IFusionConfigurationPublishingErrorData, IFusionConfigurationValidationErrorData, IProcessingErrorData { - public McpFeatureCollectionValidationErrorData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? collections = default !) + public InvalidGraphQLSchemaErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Collections = collections; + Message = message; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Collections { get; init; } + public global::System.String? Message { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -220619,22 +222786,34 @@ public partial record SchemaVersionSyntaxErrorData : ISchemaDeploymentErrorData, // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersistedQueryErrorData + public partial record McpFeatureCollectionValidationCollectionData { - public PersistedQueryErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? code = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) + public McpFeatureCollectionValidationCollectionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? entities = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - Code = code; - Path = path; - Locations = locations; + McpFeatureCollection = mcpFeatureCollection; + Entities = entities; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? Code { get; init; } - public global::System.String? Path { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OpenApiCollectionValidationCollectionData + { + public OpenApiCollectionValidationCollectionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? entities = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + OpenApiCollection = openApiCollection; + Entities = entities; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -220841,50 +223020,82 @@ public partial record GraphQLSchemaErrorData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationCollectionData + public partial interface IMcpFeatureCollectionValidationEntityData { - public OpenApiCollectionValidationCollectionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? entities = default !) + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record McpFeatureCollectionValidationPromptData : IMcpFeatureCollectionValidationEntityData + { + public McpFeatureCollectionValidationPromptData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - OpenApiCollection = openApiCollection; - Entities = entities; + Errors = errors; + Name = name; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Name { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationCollectionData + public partial record McpFeatureCollectionValidationToolData : IMcpFeatureCollectionValidationEntityData + { + public McpFeatureCollectionValidationToolData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Errors = errors; + Name = name; + } + + public global::System.String __typename { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Name { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial interface IOpenApiCollectionValidationEntityData + { + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record OpenApiCollectionValidationEndpointData : IOpenApiCollectionValidationEntityData { - public McpFeatureCollectionValidationCollectionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? entities = default !) + public OpenApiCollectionValidationEndpointData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? httpMethod = default !, global::System.String? route = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - McpFeatureCollection = mcpFeatureCollection; - Entities = entities; + Errors = errors; + HttpMethod = httpMethod; + Route = route; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Entities { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? HttpMethod { get; init; } + public global::System.String? Route { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersistedQueryErrorLocationData + public partial record OpenApiCollectionValidationModelData : IOpenApiCollectionValidationEntityData { - public PersistedQueryErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) + public OpenApiCollectionValidationModelData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Column = column; - Line = line; + Errors = errors; + Name = name; } public global::System.String __typename { get; init; } - public global::System.Int32? Column { get; init; } - public global::System.Int32? Line { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Name { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -221316,82 +223527,84 @@ public partial record UnionMemberRemovedData : ISchemaMemberChangeData, IUnionCh // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IOpenApiCollectionValidationEntityData + public partial interface IMcpFeatureCollectionValidationEntityErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationEndpointData : IOpenApiCollectionValidationEntityData + public partial record McpFeatureCollectionValidationDocumentErrorData : IMcpFeatureCollectionValidationEntityErrorData { - public OpenApiCollectionValidationEndpointData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? httpMethod = default !, global::System.String? route = default !) + public McpFeatureCollectionValidationDocumentErrorData(global::System.String __typename, global::System.String? code = default !, global::System.String? message = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - HttpMethod = httpMethod; - Route = route; + Code = code; + Message = message; + Path = path; + Locations = locations; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } - public global::System.String? HttpMethod { get; init; } - public global::System.String? Route { get; init; } + public global::System.String? Code { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? Path { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationModelData : IOpenApiCollectionValidationEntityData + public partial record McpFeatureCollectionValidationEntityValidationErrorData : IMcpFeatureCollectionValidationEntityErrorData { - public OpenApiCollectionValidationModelData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) + public McpFeatureCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - Name = name; + Message = message; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } - public global::System.String? Name { 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 interface IMcpFeatureCollectionValidationEntityData + public partial interface IOpenApiCollectionValidationEntityErrorData { global::System.String __typename { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationPromptData : IMcpFeatureCollectionValidationEntityData + public partial record OpenApiCollectionValidationDocumentErrorData : IOpenApiCollectionValidationEntityErrorData { - public McpFeatureCollectionValidationPromptData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) + public OpenApiCollectionValidationDocumentErrorData(global::System.String __typename, global::System.String? code = default !, global::System.String? message = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - Name = name; + Code = code; + Message = message; + Path = path; + Locations = locations; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } - public global::System.String? Name { get; init; } + public global::System.String? Code { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? Path { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationToolData : IMcpFeatureCollectionValidationEntityData + public partial record OpenApiCollectionValidationEntityValidationErrorData : IOpenApiCollectionValidationEntityErrorData { - public McpFeatureCollectionValidationToolData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !, global::System.String? name = default !) + public OpenApiCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - Name = name; + Message = message; } public global::System.String __typename { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } - public global::System.String? Name { get; init; } + public global::System.String? Message { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -221430,77 +223643,141 @@ public partial record TypeChangedData : IArgumentChangeData, IFieldChangeData, I // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IOpenApiCollectionValidationEntityErrorData + public partial record McpFeatureCollectionValidationDocumentErrorLocationData { - global::System.String __typename { get; } + public McpFeatureCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Column = column; + Line = line; + } + + public global::System.String __typename { get; init; } + public global::System.Int32? Column { get; init; } + public global::System.Int32? Line { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationDocumentErrorData : IOpenApiCollectionValidationEntityErrorData + public partial record OpenApiCollectionValidationDocumentErrorLocationData { - public OpenApiCollectionValidationDocumentErrorData(global::System.String __typename, global::System.String? code = default !, global::System.String? message = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) + public OpenApiCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Code = code; - Message = message; - Path = path; - Locations = locations; + Column = column; + Line = line; } public global::System.String __typename { get; init; } - public global::System.String? Code { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? Path { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } + public global::System.Int32? Column { get; init; } + public global::System.Int32? Line { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationEntityValidationErrorData : IOpenApiCollectionValidationEntityErrorData + public partial record ClientsConnectionData { - public OpenApiCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) + public ClientsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + Edges = edges; + PageInfo = pageInfo; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + ///A list of edges. + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + ///Information to aid in pagination. + public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial interface IMcpFeatureCollectionValidationEntityErrorData + public partial record ClientsEdgeData { - global::System.String __typename { get; } + public ClientsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? node = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Cursor = cursor; + Node = node; + } + + public global::System.String __typename { get; init; } + ///A cursor for use in pagination. + public global::System.String? Cursor { get; init; } + ///The item at the end of the edge. + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationDocumentErrorData : IMcpFeatureCollectionValidationEntityErrorData + public partial record CreateClientPayloadData { - public McpFeatureCollectionValidationDocumentErrorData(global::System.String __typename, global::System.String? code = default !, global::System.String? message = default !, global::System.String? path = default !, global::System.Collections.Generic.IReadOnlyList? locations = default !) + public CreateClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Code = code; - Message = message; - Path = path; - Locations = locations; + Client = client; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Code { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? Path { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Locations { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } + 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 McpFeatureCollectionValidationEntityValidationErrorData : IMcpFeatureCollectionValidationEntityErrorData + public partial record ApiSettingsData { - public McpFeatureCollectionValidationEntityValidationErrorData(global::System.String __typename, global::System.String? message = default !) + public ApiSettingsData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? schemaRegistry = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + SchemaRegistry = schemaRegistry; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaRegistrySettingsData? SchemaRegistry { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record SchemaRegistrySettingsData + { + public SchemaRegistrySettingsData(global::System.String __typename, global::System.Boolean? treatDangerousAsBreaking = default !, global::System.Boolean? allowBreakingSchemaChanges = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + TreatDangerousAsBreaking = treatDangerousAsBreaking; + AllowBreakingSchemaChanges = allowBreakingSchemaChanges; + } + + public global::System.String __typename { get; init; } + public global::System.Boolean? TreatDangerousAsBreaking { get; init; } + public global::System.Boolean? AllowBreakingSchemaChanges { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record DeleteApiByIdPayloadData + { + public DeleteApiByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Api = api; + Errors = errors; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } + 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 ApiDeletionFailedErrorData : IDeleteApiByIdErrorData, IErrorData + { + public ApiDeletionFailedErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -221511,74 +223788,98 @@ public partial record McpFeatureCollectionValidationEntityValidationErrorData : } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record OpenApiCollectionValidationDocumentErrorLocationData + public partial record ApisConnectionData { - public OpenApiCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) + public ApisConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Column = column; - Line = line; + Edges = edges; + PageInfo = pageInfo; } public global::System.String __typename { get; init; } - public global::System.Int32? Column { get; init; } - public global::System.Int32? Line { get; init; } + ///A list of edges. + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + ///Information to aid in pagination. + public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionValidationDocumentErrorLocationData + public partial record ApisEdgeData { - public McpFeatureCollectionValidationDocumentErrorLocationData(global::System.String __typename, global::System.Int32? column = default !, global::System.Int32? line = default !) + public ApisEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? node = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Column = column; - Line = line; + Cursor = cursor; + Node = node; } public global::System.String __typename { get; init; } - public global::System.Int32? Column { get; init; } - public global::System.Int32? Line { get; init; } + ///A cursor for use in pagination. + public global::System.String? Cursor { get; init; } + ///The item at the end of the edge. + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UnpublishClientPayloadData + public partial record UpdateApiSettingsPayloadData { - public UnpublishClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public UpdateApiSettingsPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - ClientVersion = clientVersion; + Api = api; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? ClientVersion { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } + 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 UploadClientPayloadData + public partial record PushWorkspaceChangesPayloadData { - public UploadClientPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? clientVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public PushWorkspaceChangesPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? changes = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - ClientVersion = clientVersion; + Changes = changes; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientVersionData? ClientVersion { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } + 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 InvalidPersistedQueryErrorData : IUploadClientErrorData, IErrorData + public partial record WorkspaceChangePayloadData { - public InvalidPersistedQueryErrorData(global::System.String __typename, global::System.String? message = default !) + public WorkspaceChangePayloadData(global::System.String __typename, global::System.String? referenceId = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? error = default !, global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? result = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + ReferenceId = referenceId; + Error = error; + Result = result; + } + + public global::System.String __typename { get; init; } + public global::System.String? ReferenceId { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeErrorData? Error { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.IWorkspaceChangeResultData? Result { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ChangeStructureInvalidData : IPushDocumentChangesErrorData, IPushWorkspaceChangesErrorData, IErrorData + { + public ChangeStructureInvalidData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -221590,9 +223891,16 @@ public partial record InvalidPersistedQueryErrorData : IUploadClientErrorData, I // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DuplicatedTagErrorData : IUploadClientErrorData, IUploadFusionSubgraphErrorData, IUploadMcpFeatureCollectionErrorData, IUploadOpenApiCollectionErrorData, IUploadSchemaErrorData, IErrorData + public partial interface IWorkspaceChangeErrorData { - public DuplicatedTagErrorData(global::System.String __typename, global::System.String? message = default !) + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ChangeValidationFailedData : IWorkspaceChangeErrorData, IErrorData + { + public ChangeValidationFailedData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Message = message; @@ -221604,216 +223912,231 @@ public partial record DuplicatedTagErrorData : IUploadClientErrorData, IUploadFu // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidateClientPayloadData + public partial record HasBeenChangedConflictData : IWorkspaceChangeErrorData, IErrorData { - public ValidateClientPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public HasBeenChangedConflictData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; - Errors = errors; + Message = message; } public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { 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 ClientVersionValidationFailedData : IClientVersionValidationResultData + public partial record HasBeenDeletedConflictData : IWorkspaceChangeErrorData, IErrorData { - public ClientVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public HasBeenDeletedConflictData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; - Errors = errors; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { 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 ClientVersionValidationSuccessData : IClientVersionValidationResultData + public partial record IdentifierCollisionConflictData : IWorkspaceChangeErrorData, IErrorData { - public ClientVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + public IdentifierCollisionConflictData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { 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 ValidationInProgressData : IFusionConfigurationPublishingResultData, IClientVersionValidationResultData, ISchemaVersionValidationResultData, IOpenApiCollectionVersionValidationResultData, IMcpFeatureCollectionVersionValidationResultData + public partial record UnexpectedErrorOnChangeData : IWorkspaceChangeErrorData, IErrorData { - public ValidationInProgressData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + public UnexpectedErrorOnChangeData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + public global::System.String? Message { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record EnvironmentsConnectionData + public partial record WorkspaceNotFoundForChangeData : IWorkspaceChangeErrorData, IErrorData { - public EnvironmentsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public WorkspaceNotFoundForChangeData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Edges = edges; - PageInfo = pageInfo; + Message = message; } public global::System.String __typename { get; init; } - ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } - ///Information to aid in pagination. - public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } + public global::System.String? Message { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record EnvironmentsEdgeData + public partial record UpdateStagesPayloadData { - public EnvironmentsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData? node = default !) + public UpdateStagesPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Cursor = cursor; - Node = node; + Api = api; + Errors = errors; } public global::System.String __typename { get; init; } - ///A cursor for use in pagination. - public global::System.String? Cursor { get; init; } - ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData? Node { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } + 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 FusionConfigurationData + public partial record StagesHavePublishedDependenciesErrorData : IUpdateStagesErrorData, IErrorData { - public FusionConfigurationData(global::System.String __typename, global::System.String? downloadUrl = default !, global::System.String? tag = default !) + public StagesHavePublishedDependenciesErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? stages = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - DownloadUrl = downloadUrl; - Tag = tag; + Message = message; + Stages = stages; } public global::System.String __typename { get; init; } - public global::System.String? DownloadUrl { get; init; } - public global::System.String? Tag { get; init; } + public global::System.String? Message { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UploadFusionSubgraphPayloadData + public partial record StageValidationErrorData : IUpdateStagesErrorData, IErrorData { - public UploadFusionSubgraphPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? fusionSubgraphVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public StageValidationErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - FusionSubgraphVersion = fusionSubgraphVersion; - Errors = errors; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.FusionSubgraphVersionData? FusionSubgraphVersion { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { 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 FusionSubgraphVersionData + public partial interface IStageConditionData { - public FusionSubgraphVersionData(global::System.String __typename, global::System.String? id = default !) + global::System.String __typename { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record AfterStageConditionData : IStageConditionData + { + public AfterStageConditionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.StageData? afterStage = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; + AfterStage = afterStage; } public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.StageData? AfterStage { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record InvalidFusionSourceSchemaArchiveErrorData : IUploadFusionSubgraphErrorData, IErrorData + public partial record PublishedSchemaVersionData { - public InvalidFusionSourceSchemaArchiveErrorData(global::System.String __typename, global::System.String? message = default !) + public PublishedSchemaVersionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? version = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + Version = version; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Version { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateMcpFeatureCollectionPayloadData + public partial record PublishedClientData { - public CreateMcpFeatureCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public PublishedClientData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? publishedVersions = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - McpFeatureCollection = mcpFeatureCollection; - Errors = errors; + Client = client; + PublishedVersions = publishedVersions; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } + public global::System.Collections.Generic.IReadOnlyList? PublishedVersions { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record DeleteMcpFeatureCollectionByIdPayloadData + public partial record SchemaVersionData { - public DeleteMcpFeatureCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public SchemaVersionData(global::System.String __typename, global::System.String? tag = default !, global::System.String? id = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - McpFeatureCollection = mcpFeatureCollection; - Errors = errors; + Tag = tag; + Id = id; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Tag { get; init; } + public global::System.String? Id { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionNotFoundErrorData : IDeleteMcpFeatureCollectionByIdErrorData, IPublishMcpFeatureCollectionErrorData, IUploadMcpFeatureCollectionErrorData, IValidateMcpFeatureCollectionErrorData, IErrorData + public partial record EnvironmentsConnectionData { - public McpFeatureCollectionNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? mcpFeatureCollectionId = default !) + public EnvironmentsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - McpFeatureCollectionId = mcpFeatureCollectionId; + Edges = edges; + PageInfo = pageInfo; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.String? McpFeatureCollectionId { get; init; } + ///A list of edges. + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + ///Information to aid in pagination. + public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///An edge in a connection. + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record EnvironmentsEdgeData + { + public EnvironmentsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData? node = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Cursor = cursor; + Node = node; + } + + public global::System.String __typename { get; init; } + ///A cursor for use in pagination. + public global::System.String? Cursor { get; init; } + ///The item at the end of the edge. + public global::ChilliCream.Nitro.CommandLine.Client.State.EnvironmentData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiMcpFeatureCollectionsConnectionData + public partial record ApiKeysConnectionData { - public ApiMcpFeatureCollectionsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public ApiKeysConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Edges = edges; @@ -221822,7 +224145,7 @@ public partial record ApiMcpFeatureCollectionsConnectionData public global::System.String __typename { get; init; } ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } ///Information to aid in pagination. public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } @@ -221830,9 +224153,9 @@ public partial record ApiMcpFeatureCollectionsConnectionData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ApiMcpFeatureCollectionsEdgeData + public partial record ApiKeysEdgeData { - public ApiMcpFeatureCollectionsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? node = default !) + public ApiKeysEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? node = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Cursor = cursor; @@ -221843,71 +224166,131 @@ public partial record ApiMcpFeatureCollectionsEdgeData ///A cursor for use in pagination. public global::System.String? Cursor { get; init; } ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Node { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishMcpFeatureCollectionPayloadData + public partial record CreateApiKeyPayloadData { - public PublishMcpFeatureCollectionPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public CreateApiKeyPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? result = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; + Result = result; Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyWithSecretData? Result { get; init; } + 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 McpFeatureCollectionVersionNotFoundErrorData : IPublishMcpFeatureCollectionErrorData, IErrorData + public partial record ApiKeyWithSecretData { - public McpFeatureCollectionVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? mcpFeatureCollectionId = default !) + public ApiKeyWithSecretData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? key = default !, global::System.String? secret = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Key = key; + Secret = secret; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? Key { get; init; } + public global::System.String? Secret { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record WorkspaceNotFoundData : ICreateApiKeyErrorData, IRemoveWorkspaceErrorData, IRenameWorkspaceErrorData, ISetActiveWorkspaceErrorData, IErrorData + { + public WorkspaceNotFoundData(global::System.String __typename, global::System.String? message = default !, global::System.String? workspaceId = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Tag = tag; Message = message; - McpFeatureCollectionId = mcpFeatureCollectionId; + WorkspaceId = workspaceId; } public global::System.String __typename { get; init; } - public global::System.String? Tag { get; init; } public global::System.String? Message { get; init; } - public global::System.String? McpFeatureCollectionId { get; init; } + public global::System.String? WorkspaceId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record McpFeatureCollectionVersionPublishFailedData : IMcpFeatureCollectionVersionPublishResultData + public partial record PersonalWorkspaceNotSupportedErrorData : ICreateApiKeyErrorData, ICreateApiKeyForApiErrorData, IErrorData { - public McpFeatureCollectionVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public PersonalWorkspaceNotSupportedErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; + 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 RoleNotFoundErrorData : ICreateApiKeyErrorData, IErrorData + { + public RoleNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? roleId = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Message = message; + RoleId = roleId; + } + + public global::System.String __typename { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? RoleId { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ValidationErrorPropertyData + { + public ValidationErrorPropertyData(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 DeleteApiKeyPayloadData + { + public DeleteApiKeyPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? apiKey = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + ApiKey = apiKey; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.ApiKeyData? ApiKey { get; init; } + 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 McpFeatureCollectionVersionPublishSuccessData : IMcpFeatureCollectionVersionPublishResultData + public partial record ApiKeyNotFoundErrorData : IDeleteApiKeyErrorData, IErrorData { - public McpFeatureCollectionVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + public ApiKeyNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? apiKeyId = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; + Message = message; + ApiKeyId = apiKeyId; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + public global::System.String? Message { get; init; } + public global::System.String? ApiKeyId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -221926,6 +224309,22 @@ public partial record UploadMcpFeatureCollectionPayloadData 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 McpFeatureCollectionNotFoundErrorData : IDeleteMcpFeatureCollectionByIdErrorData, IPublishMcpFeatureCollectionErrorData, IUploadMcpFeatureCollectionErrorData, IValidateMcpFeatureCollectionErrorData, IErrorData + { + public McpFeatureCollectionNotFoundErrorData(global::System.String __typename, global::System.String? mcpFeatureCollectionId = default !, global::System.String? message = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + McpFeatureCollectionId = mcpFeatureCollectionId; + Message = message; + } + + public global::System.String __typename { get; init; } + public global::System.String? McpFeatureCollectionId { 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 InvalidMcpFeatureCollectionArchiveErrorData : IUploadMcpFeatureCollectionErrorData, IErrorData @@ -222002,84 +224401,160 @@ public partial record McpFeatureCollectionValidationArchiveErrorData : IMcpFeatu // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateMockSchemaPayloadData + public partial record DeleteMcpFeatureCollectionByIdPayloadData { - public CreateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public DeleteMcpFeatureCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - MockSchema = mockSchema; + McpFeatureCollection = mcpFeatureCollection; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? MockSchema { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } + 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 MockSchemaData + public partial record CreateMcpFeatureCollectionPayloadData { - public MockSchemaData(global::System.String __typename, global::System.String? id = default !, global::System.String? name = default !, global::System.DateTimeOffset? createdAt = default !, global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? createdBy = default !, global::System.DateTimeOffset? modifiedAt = default !, global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? modifiedBy = default !, global::System.Uri? downstreamUrl = default !, global::System.String? url = default !) + public CreateMcpFeatureCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? mcpFeatureCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + McpFeatureCollection = mcpFeatureCollection; + Errors = errors; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? McpFeatureCollection { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///A connection to a list of items. + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ApiMcpFeatureCollectionsConnectionData + { + public ApiMcpFeatureCollectionsConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Edges = edges; + PageInfo = pageInfo; + } + + public global::System.String __typename { get; init; } + ///A list of edges. + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + ///Information to aid in pagination. + public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + ///An edge in a connection. + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ApiMcpFeatureCollectionsEdgeData + { + public ApiMcpFeatureCollectionsEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? node = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Cursor = cursor; + Node = node; + } + + public global::System.String __typename { get; init; } + ///A cursor for use in pagination. + public global::System.String? Cursor { get; init; } + ///The item at the end of the edge. + public global::ChilliCream.Nitro.CommandLine.Client.State.McpFeatureCollectionData? Node { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record PublishMcpFeatureCollectionPayloadData + { + public PublishMcpFeatureCollectionPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Id = id; - Name = name; - CreatedAt = createdAt; - CreatedBy = createdBy; - ModifiedAt = modifiedAt; - ModifiedBy = modifiedBy; - DownstreamUrl = downstreamUrl; - Url = url; + Errors = errors; } public global::System.String __typename { get; init; } public global::System.String? Id { get; init; } - public global::System.String? Name { get; init; } - public global::System.DateTimeOffset? CreatedAt { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? CreatedBy { get; init; } - public global::System.DateTimeOffset? ModifiedAt { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.UserInfoData? ModifiedBy { get; init; } - public global::System.Uri? DownstreamUrl { get; init; } - public global::System.String? Url { get; init; } + 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 MockSchemaNonUniqueNameErrorData : ICreateMockSchemaErrorData, IUpdateMockSchemaErrorData, IErrorData + public partial record McpFeatureCollectionVersionNotFoundErrorData : IPublishMcpFeatureCollectionErrorData, IErrorData { - public MockSchemaNonUniqueNameErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? name = default !) + public McpFeatureCollectionVersionNotFoundErrorData(global::System.String __typename, global::System.String? tag = default !, global::System.String? message = default !, global::System.String? mcpFeatureCollectionId = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Tag = tag; Message = message; - Name = name; + McpFeatureCollectionId = mcpFeatureCollectionId; } public global::System.String __typename { get; init; } + public global::System.String? Tag { get; init; } public global::System.String? Message { get; init; } - public global::System.String? Name { get; init; } + public global::System.String? McpFeatureCollectionId { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UserInfoData : IAuthorizationEventLogPrincipalData + public partial record McpFeatureCollectionVersionPublishFailedData : IMcpFeatureCollectionVersionPublishResultData { - public UserInfoData(global::System.String __typename, global::System.String? username = default !) + public McpFeatureCollectionVersionPublishFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Username = username; + State = state; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Username { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + 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 McpFeatureCollectionVersionPublishSuccessData : IMcpFeatureCollectionVersionPublishResultData + { + public McpFeatureCollectionVersionPublishSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + State = state; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record ViewerData + { + public ViewerData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? personalAccessTokens = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? workspaces = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + PersonalAccessTokens = personalAccessTokens; + Workspaces = workspaces; + } + + public global::System.String __typename { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? PersonalAccessTokens { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Workspaces { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record MockSchemasConnectionData + public partial record PersonalAccessTokensConnectionData { - public MockSchemasConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public PersonalAccessTokensConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Edges = edges; @@ -222088,7 +224563,7 @@ public partial record MockSchemasConnectionData public global::System.String __typename { get; init; } ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } ///Information to aid in pagination. public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } @@ -222096,9 +224571,9 @@ public partial record MockSchemasConnectionData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record MockSchemasEdgeData + public partial record PersonalAccessTokensEdgeData { - public MockSchemasEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? node = default !) + public PersonalAccessTokensEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? node = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Cursor = cursor; @@ -222109,85 +224584,135 @@ public partial record MockSchemasEdgeData ///A cursor for use in pagination. public global::System.String? Cursor { get; init; } ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? Node { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UpdateMockSchemaPayloadData + public partial record PersonalAccessTokenData { - public UpdateMockSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? mockSchema = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public PersonalAccessTokenData(global::System.String __typename, global::System.String? id = default !, global::System.String? description = default !, global::System.DateTimeOffset? expiresAt = default !, global::System.DateTimeOffset? createdAt = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - MockSchema = mockSchema; + Id = id; + Description = description; + ExpiresAt = expiresAt; + CreatedAt = createdAt; + } + + public global::System.String __typename { get; init; } + public global::System.String? Id { get; init; } + public global::System.String? Description { get; init; } + public global::System.DateTimeOffset? ExpiresAt { get; init; } + public global::System.DateTimeOffset? CreatedAt { get; init; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] + public partial record CreatePersonalAccessTokenPayloadData + { + public CreatePersonalAccessTokenPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? result = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + Result = result; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.MockSchemaData? MockSchema { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? Result { get; init; } + 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 MockSchemaNotFoundErrorData : IDeleteMockSchemaByIdErrorData, IUpdateMockSchemaErrorData, IErrorData + public partial record PersonalAccessTokenWithSecretData { - public MockSchemaNotFoundErrorData(global::System.String __typename, global::System.String? message = default !) + public PersonalAccessTokenWithSecretData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? token = default !, global::System.String? secret = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + Token = token; + Secret = secret; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Token { get; init; } + public global::System.String? Secret { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreateOpenApiCollectionPayloadData + public partial record RevokePersonalAccessTokenPayloadData { - public CreateOpenApiCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public RevokePersonalAccessTokenPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? personalAccessToken = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - OpenApiCollection = openApiCollection; + PersonalAccessToken = personalAccessToken; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? PersonalAccessToken { get; init; } + 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 DeleteOpenApiCollectionByIdPayloadData + public partial record PersonalAccessTokenNotFoundErrorData : IRevokePersonalAccessTokenErrorData, IErrorData { - public DeleteOpenApiCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public PersonalAccessTokenNotFoundErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - OpenApiCollection = openApiCollection; + 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 UploadOpenApiCollectionPayloadData + { + public UploadOpenApiCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? openApiCollectionVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + { + this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); + OpenApiCollectionVersion = openApiCollectionVersion; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? OpenApiCollectionVersion { get; init; } + 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 OpenApiCollectionNotFoundErrorData : IDeleteOpenApiCollectionByIdErrorData, IPublishOpenApiCollectionErrorData, IUploadOpenApiCollectionErrorData, IValidateOpenApiCollectionErrorData, IErrorData { - public OpenApiCollectionNotFoundErrorData(global::System.String __typename, global::System.String? message = default !, global::System.String? openApiCollectionId = default !) + public OpenApiCollectionNotFoundErrorData(global::System.String __typename, global::System.String? openApiCollectionId = default !, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; OpenApiCollectionId = openApiCollectionId; + Message = message; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } public global::System.String? OpenApiCollectionId { 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 InvalidOpenApiCollectionArchiveErrorData : IUploadOpenApiCollectionErrorData, IErrorData + { + public InvalidOpenApiCollectionArchiveErrorData(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 @@ -222292,36 +224817,6 @@ public partial record OpenApiCollectionVersionPublishSuccessData : IOpenApiColle public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UploadOpenApiCollectionPayloadData - { - public UploadOpenApiCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? openApiCollectionVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - OpenApiCollectionVersion = openApiCollectionVersion; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionVersionData? OpenApiCollectionVersion { get; init; } - 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 InvalidOpenApiCollectionArchiveErrorData : IUploadOpenApiCollectionErrorData, IErrorData - { - public InvalidOpenApiCollectionArchiveErrorData(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 ValidateOpenApiCollectionPayloadData @@ -222384,78 +224879,58 @@ public partial record OpenApiCollectionValidationArchiveErrorData : IOpenApiColl // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CreatePersonalAccessTokenPayloadData + public partial record CreateOpenApiCollectionPayloadData { - public CreatePersonalAccessTokenPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? result = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public CreateOpenApiCollectionPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Result = result; + OpenApiCollection = openApiCollection; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenWithSecretData? Result { get; init; } - 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 PersonalAccessTokenWithSecretData - { - public PersonalAccessTokenWithSecretData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? token = default !, global::System.String? secret = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Token = token; - Secret = secret; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Token { get; init; } - public global::System.String? Secret { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } + 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 PersonalAccessTokenData + public partial record DeleteOpenApiCollectionByIdPayloadData { - public PersonalAccessTokenData(global::System.String __typename, global::System.String? id = default !, global::System.String? description = default !, global::System.DateTimeOffset? createdAt = default !, global::System.DateTimeOffset? expiresAt = default !) + public DeleteOpenApiCollectionByIdPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? openApiCollection = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; - Description = description; - CreatedAt = createdAt; - ExpiresAt = expiresAt; + OpenApiCollection = openApiCollection; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.String? Description { get; init; } - public global::System.DateTimeOffset? CreatedAt { get; init; } - public global::System.DateTimeOffset? ExpiresAt { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.OpenApiCollectionData? OpenApiCollection { get; init; } + 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 ViewerData + public partial record CreateWorkspacePayloadData { - public ViewerData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? personalAccessTokens = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? workspaces = default !) + public CreateWorkspacePayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - PersonalAccessTokens = personalAccessTokens; - Workspaces = workspaces; + Workspace = workspace; + Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokensConnectionData? PersonalAccessTokens { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspacesConnectionData? Workspaces { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersonalAccessTokensConnectionData + public partial record WorkspacesConnectionData { - public PersonalAccessTokensConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public WorkspacesConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Edges = edges; @@ -222464,7 +224939,7 @@ public partial record PersonalAccessTokensConnectionData public global::System.String __typename { get; init; } ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } ///Information to aid in pagination. public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } } @@ -222472,9 +224947,9 @@ public partial record PersonalAccessTokensConnectionData // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PersonalAccessTokensEdgeData + public partial record WorkspacesEdgeData { - public PersonalAccessTokensEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? node = default !) + public WorkspacesEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? node = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); Cursor = cursor; @@ -222485,37 +224960,7 @@ public partial record PersonalAccessTokensEdgeData ///A cursor for use in pagination. public global::System.String? Cursor { get; init; } ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? Node { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record RevokePersonalAccessTokenPayloadData - { - public RevokePersonalAccessTokenPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? personalAccessToken = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - PersonalAccessToken = personalAccessToken; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.PersonalAccessTokenData? PersonalAccessToken { get; init; } - 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 PersonalAccessTokenNotFoundErrorData : IRevokePersonalAccessTokenErrorData, IErrorData - { - public PersonalAccessTokenNotFoundErrorData(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; } + public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Node { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -222603,228 +225048,131 @@ public partial record UploadSchemaPayloadData public UploadSchemaPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? schemaVersion = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - SchemaVersion = schemaVersion; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? SchemaVersion { get; init; } - 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 SchemaVersionData - { - public SchemaVersionData(global::System.String __typename, global::System.String? id = default !, global::System.String? tag = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; - Tag = tag; - } - - public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - public global::System.String? Tag { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record ValidateSchemaPayloadData - { - public ValidateSchemaPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Id = id; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::System.String? Id { get; init; } - 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 SchemaVersionValidationFailedData : ISchemaVersionValidationResultData - { - public SchemaVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; - Errors = errors; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - 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 SchemaVersionValidationSuccessData : ISchemaVersionValidationResultData - { - public SchemaVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - State = state; - Changes = changes; - } - - public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } - } - - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record UpdateStagesPayloadData - { - public UpdateStagesPayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? api = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Api = api; + SchemaVersion = schemaVersion; Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ApiData? Api { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? SchemaVersion { get; init; } + 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 StagesHavePublishedDependenciesErrorData : IUpdateStagesErrorData, IErrorData + public partial record ValidateSchemaPayloadData { - public StagesHavePublishedDependenciesErrorData(global::System.String __typename, global::System.String? message = default !, global::System.Collections.Generic.IReadOnlyList? stages = default !) + public ValidateSchemaPayloadData(global::System.String __typename, global::System.String? id = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; - Stages = stages; + Id = id; + Errors = errors; } public global::System.String __typename { get; init; } - public global::System.String? Message { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Stages { get; init; } + public global::System.String? Id { get; init; } + 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 StageValidationErrorData : IUpdateStagesErrorData, IErrorData + public partial record SchemaVersionValidationFailedData : ISchemaVersionValidationResultData { - public StageValidationErrorData(global::System.String __typename, global::System.String? message = default !) + public SchemaVersionValidationFailedData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Message = message; + State = state; + Errors = errors; } 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 interface IStageConditionData - { - global::System.String __typename { get; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + 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 AfterStageConditionData : IStageConditionData + public partial record SchemaVersionValidationSuccessData : ISchemaVersionValidationResultData { - public AfterStageConditionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.StageData? afterStage = default !) + public SchemaVersionValidationSuccessData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? state = default !, global::System.Collections.Generic.IReadOnlyList? changes = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - AfterStage = afterStage; + State = state; + Changes = changes; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.StageData? AfterStage { get; init; } + public global::ChilliCream.Nitro.CommandLine.Client.ProcessingState? State { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record PublishedSchemaVersionData + public partial record CancelFusionConfigurationCompositionPayloadData { - public PublishedSchemaVersionData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? version = default !) + public CancelFusionConfigurationCompositionPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Version = version; + Errors = errors; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.SchemaVersionData? Version { get; init; } + 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 PublishedClientData + public partial record FusionConfigurationRequestNotFoundErrorData : ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IStartFusionConfigurationCompositionErrorData, IValidateFusionConfigurationCompositionErrorData, IErrorData { - public PublishedClientData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? client = default !, global::System.Collections.Generic.IReadOnlyList? publishedVersions = default !) + public FusionConfigurationRequestNotFoundErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Client = client; - PublishedVersions = publishedVersions; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.ClientData? Client { get; init; } - public global::System.Collections.Generic.IReadOnlyList? PublishedVersions { 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 CreateWorkspacePayloadData + public partial record InvalidProcessingStateTransitionErrorData : IBeginFusionConfigurationPublishErrorData, ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IStartFusionConfigurationCompositionErrorData, IValidateFusionConfigurationCompositionErrorData, IErrorData { - public CreateWorkspacePayloadData(global::System.String __typename, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? workspace = default !, global::System.Collections.Generic.IReadOnlyList? errors = default !) + public InvalidProcessingStateTransitionErrorData(global::System.String __typename, global::System.String? message = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Workspace = workspace; - Errors = errors; + Message = message; } public global::System.String __typename { get; init; } - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Workspace { get; init; } - public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } + public global::System.String? Message { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///A connection to a list of items. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspacesConnectionData + public partial record CommitFusionConfigurationPublishPayloadData { - public WorkspacesConnectionData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? edges = default !, global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? pageInfo = default !) + public CommitFusionConfigurationPublishPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Edges = edges; - PageInfo = pageInfo; + Errors = errors; } public global::System.String __typename { get; init; } - ///A list of edges. - public global::System.Collections.Generic.IReadOnlyList? Edges { get; init; } - ///Information to aid in pagination. - public global::ChilliCream.Nitro.CommandLine.Client.State.PageInfoData? PageInfo { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - ///An edge in a connection. [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record WorkspacesEdgeData + public partial record StartFusionConfigurationCompositionPayloadData { - public WorkspacesEdgeData(global::System.String __typename, global::System.String? cursor = default !, global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? node = default !) + public StartFusionConfigurationCompositionPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) { this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Cursor = cursor; - Node = node; + Errors = errors; } public global::System.String __typename { get; init; } - ///A cursor for use in pagination. - public global::System.String? Cursor { get; init; } - ///The item at the end of the edge. - public global::ChilliCream.Nitro.CommandLine.Client.State.WorkspaceData? Node { get; init; } + public global::System.Collections.Generic.IReadOnlyList? Errors { get; init; } } // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator @@ -222857,20 +225205,6 @@ public partial record SubgraphInvalidErrorData : IBeginFusionConfigurationPublis 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 InvalidProcessingStateTransitionErrorData : IBeginFusionConfigurationPublishErrorData, ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IStartFusionConfigurationCompositionErrorData, IValidateFusionConfigurationCompositionErrorData, IErrorData - { - public InvalidProcessingStateTransitionErrorData(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 FusionConfigurationPublishingFailedData : IFusionConfigurationPublishingResultData @@ -222945,62 +225279,6 @@ public partial record FusionConfigurationValidationSuccessData : IFusionConfigur public global::System.Collections.Generic.IReadOnlyList? Changes { get; init; } } - // StrawberryShake.CodeGeneration.CSharp.Generators.DataTypeGenerator - [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "0.0.0.0")] - public partial record CancelFusionConfigurationCompositionPayloadData - { - public CancelFusionConfigurationCompositionPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - } - - public global::System.String __typename { get; init; } - 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 FusionConfigurationRequestNotFoundErrorData : ICancelFusionConfigurationCompositionErrorData, ICommitFusionConfigurationPublishErrorData, IStartFusionConfigurationCompositionErrorData, IValidateFusionConfigurationCompositionErrorData, IErrorData - { - public FusionConfigurationRequestNotFoundErrorData(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 CommitFusionConfigurationPublishPayloadData - { - public CommitFusionConfigurationPublishPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - } - - public global::System.String __typename { get; init; } - 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 StartFusionConfigurationCompositionPayloadData - { - public StartFusionConfigurationCompositionPayloadData(global::System.String __typename, global::System.Collections.Generic.IReadOnlyList? errors = default !) - { - this.__typename = __typename ?? throw new global::System.ArgumentNullException(nameof(__typename)); - Errors = errors; - } - - public global::System.String __typename { get; init; } - 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 ValidateFusionConfigurationCompositionPayloadData @@ -223050,143 +225328,143 @@ public static partial class ApiClientServiceCollectionExtensions return new ClientServiceProvider(global::Microsoft.Extensions.DependencyInjection.ServiceCollectionContainerBuilderExtensions.BuildServiceProvider(serviceCollection)); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => new global::ChilliCream.Nitro.CommandLine.Client.State.ApiClientStoreAccessor()); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp))); @@ -223201,10 +225479,10 @@ public static partial class ApiClientServiceCollectionExtensions return new global::StrawberryShake.Transport.Http.HttpConnection(() => clientFactory.CreateClient("ApiClient")); }); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); @@ -223231,158 +225509,89 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, new global::StrawberryShake.Serialization.StringSerializer("Version")); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => new global::StrawberryShake.Serialization.SerializerResolver(global::System.Linq.Enumerable.Concat(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(parentServices), global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiKeyCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiKeyCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetApiSettingsCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetApiSettingsCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowApiCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowApiCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.FetchConfigurationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.FetchConfigurationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListClientCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListClientCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientVersionResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientVersionBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnClientVersionPublishUpdatedResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnClientVersionPublishUpdatedBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListMockCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListMockCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowClientCommandQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223423,14 +225632,110 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateEnvironmentCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateEnvironmentCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteClientByIdCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientVersionResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PublishClientVersionBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnClientVersionPublishUpdatedResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnClientVersionPublishUpdatedBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListClientCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListClientCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateClientCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowApiCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowApiCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetApiSettingsCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetApiSettingsCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListStagesQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListStagesQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListEnvironmentCommandQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223447,30 +225752,62 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.FetchConfigurationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.FetchConfigurationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateEnvironmentCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateEnvironmentCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadFusionSubgraphBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiKeyCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListApiKeyCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateApiKeyCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteApiKeyCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandSubscriptionResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandSubscriptionBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteMcpFeatureCollectionByIdCommandMutationResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223479,6 +225816,14 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMcpFeatureCollectionCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListMcpFeatureCollectionCommandQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223503,70 +225848,38 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadMcpFeatureCollectionCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandSubscriptionResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateMcpFeatureCollectionCommandSubscriptionBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateMockSchemaBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListMockCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListMockCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListPersonalAccessTokenCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListPersonalAccessTokenCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateMockSchemaBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListOpenApiCollectionCommandQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223591,14 +225904,6 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UploadOpenApiCollectionCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateOpenApiCollectionCommandMutationResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223615,30 +225920,54 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreatePersonalAccessTokenCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateOpenApiCollectionCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListPersonalAccessTokenCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListPersonalAccessTokenCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.DeleteOpenApiCollectionByIdCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.RevokePersonalAccessTokenCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowWorkspaceCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowWorkspaceCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspaceCommandMutationResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspaceCommandMutationBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListWorkspaceCommandQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListWorkspaceCommandQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PublishSchemaVersionResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223679,94 +226008,6 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.UpdateStagesBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListStagesQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListStagesQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspaceCommandMutationResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CreateWorkspaceCommandMutationBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListWorkspaceCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ListWorkspaceCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetDefaultWorkspaceCommand_SelectWorkspace_QueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SetDefaultWorkspaceCommand_SelectWorkspace_QueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowWorkspaceCommandQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ShowWorkspaceCommandQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectApiPromptQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectApiPromptQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PageClientVersionDetailQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PageClientVersionDetailQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectClientPromptQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectClientPromptQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.BeginFusionConfigurationPublishResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.BeginFusionConfigurationPublishBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnFusionConfigurationPublishingTaskChangedResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnFusionConfigurationPublishingTaskChangedBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.CancelFusionConfigurationPublishResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223791,6 +226032,22 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.BeginFusionConfigurationPublishResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.BeginFusionConfigurationPublishBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnFusionConfigurationPublishingTaskChangedResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.OnFusionConfigurationPublishingTaskChangedBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.ValidateFusionConfigurationPublishResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223799,14 +226056,6 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectMcpFeatureCollectionPromptQueryResultFactory>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectMcpFeatureCollectionPromptQueryBuilder>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); - global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectMockSchemaPromptQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); @@ -223815,6 +226064,38 @@ public static partial class ApiClientServiceCollectionExtensions global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PageClientVersionDetailQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.PageClientVersionDetailQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectClientPromptQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectClientPromptQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectApiPromptQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectApiPromptQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectMcpFeatureCollectionPromptQueryResultFactory>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectMcpFeatureCollectionPromptQueryBuilder>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton>(services, sp => new global::StrawberryShake.StorelessOperationExecutor(global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp), () => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp))); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::StrawberryShake.Json.JsonResultPatcher>(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services); + global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton, global::ChilliCream.Nitro.CommandLine.Client.State.SelectOpenApiCollectionPromptQueryResultFactory>(services); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService>(sp)); global::Microsoft.Extensions.DependencyInjection.ServiceCollectionServiceExtensions.AddSingleton(services, sp => global::Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(sp)); diff --git a/src/Nitro/CommandLine/src/CommandLine/README.md b/src/Nitro/CommandLine/src/CommandLine/README.md index b71bf1edc53..d52eec0e816 100644 --- a/src/Nitro/CommandLine/src/CommandLine/README.md +++ b/src/Nitro/CommandLine/src/CommandLine/README.md @@ -22,7 +22,7 @@ This file is git-ignored and **shouldn't be checked in**! If you change any `*.graphql` files, you need to re-generate the GraphQL client: ```bash -dotnet graphql generate +dotnet run --framework net10.0 --project ../../../../StrawberryShake/Tooling/src/dotnet-graphql/dotnet-graphql.csproj generate ``` ## Before publishing @@ -30,7 +30,7 @@ dotnet graphql generate The deployed Nitro Backend only allows persisted operations, so if you change any `*.graphql` files, you need to make sure to re-generate the persisted operations: ```bash -dotnet graphql generate --relayFormat -q persisted +dotnet run --framework net10.0 --project ../../../../StrawberryShake/Tooling/src/dotnet-graphql/dotnet-graphql.csproj generate --relayFormat -q persisted ``` This operations are then published to Nitro during the release. diff --git a/src/Nitro/CommandLine/src/CommandLine/schema.graphql b/src/Nitro/CommandLine/src/CommandLine/schema.graphql index c9271fb082e..6563b52986a 100644 --- a/src/Nitro/CommandLine/src/CommandLine/schema.graphql +++ b/src/Nitro/CommandLine/src/CommandLine/schema.graphql @@ -55,6 +55,7 @@ interface Deployment { createdAt: DateTime! id: ID! logs: [DeploymentLog!]! + source: SourceMetadata status: DeploymentStatus! tag: String! } @@ -260,6 +261,10 @@ interface StageChangeLog { tag: String! } +interface StageChangedEvent { + kind: StageChangeKind! +} + interface Subgraph { api: Api id: ID! @@ -704,6 +709,11 @@ type ClientChangeLog implements StageChangeLog & Node { tag: String! } +type ClientDeletedStageChangeEvent implements StageChangedEvent { + clientId: ID! + kind: StageChangeKind! +} + type ClientDeployment implements Node & Deployment { approval: DeploymentApproval client: Client @@ -711,6 +721,7 @@ type ClientDeployment implements Node & Deployment { errors: [ClientDeploymentError!]! id: ID! logs: [DeploymentLog!]! + source: SourceMetadata status: DeploymentStatus! tag: String! } @@ -795,11 +806,21 @@ type ClientVersionPublishSuccess implements ClientVersionPublishResult { state: ProcessingState! } +type ClientVersionPublishedStageChangeEvent implements StageChangedEvent { + clientVersion: ClientVersion + kind: StageChangeKind! +} + type ClientVersionRequestNotFoundError implements Error { message: String! requestId: ID! } +type ClientVersionUnpublishedStageChangeEvent implements StageChangedEvent { + clientVersion: ClientVersion + kind: StageChangeKind! +} + type ClientVersionValidationFailed implements ClientVersionValidationResult { errors: [ClientVersionValidationError!]! state: ProcessingState! @@ -1069,6 +1090,18 @@ type DeploymentStartedProcessingLog implements DeploymentLog { timestamp: DateTime! } +type DeploymentSubgraphsConnection { + edges: [DeploymentSubgraphsEdge!] + nodes: [FusionSubgraph!]! + pageInfo: PageInfo! +} + +type DeploymentSubgraphsEdge { + cursor: String! + node: FusionSubgraph! + version: String +} + type DeploymentSuccessLog implements DeploymentLog { message: String! timestamp: DateTime! @@ -1396,8 +1429,6 @@ type FusionConfiguration { format: FusionConfigurationFormat! id: ID! publishedAt: DateTime! - subgraph: Api - subgraphName: String supportedVersions: [String!]! tag: String! } @@ -1416,8 +1447,10 @@ type FusionConfigurationDeployment implements Node & Deployment { id: ID! logs: [DeploymentLog!]! schemaChanges: FusionConfigurationDeploymentSchemaChanges + source: SourceMetadata status: DeploymentStatus! - subgraph: Subgraph + 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! } @@ -1426,6 +1459,11 @@ type FusionConfigurationDeploymentSchemaChanges { statistic: SchemaChangeLogStatistic! } +type FusionConfigurationPublishedStageChangeEvent implements StageChangedEvent { + fusionConfiguration: FusionConfiguration + kind: StageChangeKind! +} + type FusionConfigurationPublishingFailed implements FusionConfigurationPublishingResult { errors: [FusionConfigurationPublishingError!]! state: ProcessingState! @@ -1463,6 +1501,13 @@ type FusionSubgraphVersion { tag: String! } +type GitHubSourceMetadata { + commitUrl: URL! + shortCommitHash: String! + workflowRunName: String! + workflowRunUrl: URL! +} + type GraphQLDirectiveArgumentDefinition implements Node & GraphQLTypeSystemMember & GraphQLInputValueDefinition { coordinate: String! id: ID! @@ -1779,6 +1824,10 @@ type InvalidProcessingStateTransitionError implements Error { message: String! } +type InvalidSourceMetadataInputError implements Error { + message: String! +} + type McpFeatureCollection implements Node { api: Api createdAt: DateTime! @@ -1795,6 +1844,11 @@ type McpFeatureCollectionChangeLog implements StageChangeLog & Node { tag: String! } +type McpFeatureCollectionDeletedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + mcpFeatureCollectionId: ID! +} + type McpFeatureCollectionDeployment implements Node & Deployment { approval: DeploymentApproval createdAt: DateTime! @@ -1802,6 +1856,7 @@ type McpFeatureCollectionDeployment implements Node & Deployment { id: ID! logs: [DeploymentLog!]! mcpFeatureCollection: McpFeatureCollection + source: SourceMetadata status: DeploymentStatus! tag: String! } @@ -1853,6 +1908,7 @@ type McpFeatureCollectionValidationTool implements McpFeatureCollectionValidatio type McpFeatureCollectionVersion implements Node { createdAt: DateTime! + hash: String! id: ID! mcpFeatureCollection: McpFeatureCollection tag: String! @@ -1874,6 +1930,11 @@ type McpFeatureCollectionVersionPublishSuccess implements McpFeatureCollectionVe state: ProcessingState! } +type McpFeatureCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + mcpFeatureCollectionVersion: McpFeatureCollectionVersion +} + type McpFeatureCollectionVersionValidationFailed implements McpFeatureCollectionVersionValidationResult { errors: [McpFeatureCollectionVersionValidationError!]! state: ProcessingState! @@ -1905,7 +1966,7 @@ type MockSchema { baseSchemaDownloadUrl: String! createdAt: DateTime! createdBy: UserInfo! - downstreamUrl: URL! + downstreamUrl: URI! extensionsSchemaDownloadUrl: String! id: ID! modifiedAt: DateTime! @@ -2043,6 +2104,11 @@ type OpenApiCollectionChangeLog implements StageChangeLog & Node { tag: String! } +type OpenApiCollectionDeletedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + openApiCollectionId: ID! +} + type OpenApiCollectionDeployment implements Node & Deployment { approval: DeploymentApproval createdAt: DateTime! @@ -2050,6 +2116,7 @@ type OpenApiCollectionDeployment implements Node & Deployment { id: ID! logs: [DeploymentLog!]! openApiCollection: OpenApiCollection + source: SourceMetadata status: DeploymentStatus! tag: String! } @@ -2102,6 +2169,7 @@ type OpenApiCollectionValidationModel implements OpenApiCollectionValidationEnti type OpenApiCollectionVersion implements Node { createdAt: DateTime! + hash: String! id: ID! openApiCollection: OpenApiCollection tag: String! @@ -2123,6 +2191,11 @@ type OpenApiCollectionVersionPublishSuccess implements OpenApiCollectionVersionP state: ProcessingState! } +type OpenApiCollectionVersionPublishedStageChangeEvent implements StageChangedEvent { + kind: StageChangeKind! + openApiCollectionVersion: OpenApiCollectionVersion +} + type OpenApiCollectionVersionValidationFailed implements OpenApiCollectionVersionValidationResult { errors: [OpenApiCollectionVersionValidationError!]! state: ProcessingState! @@ -3224,6 +3297,7 @@ type SchemaDeployment implements Node & Deployment { id: ID! logs: [DeploymentLog!]! schemaChanges: SchemaDeploymentSchemaChanges + source: SourceMetadata status: DeploymentStatus! tag: String! } @@ -3542,9 +3616,10 @@ type Subscription { onMcpFeatureCollectionVersionValidationUpdate(requestId: ID!): McpFeatureCollectionVersionValidationResult! onOpenApiCollectionVersionPublishingUpdate(requestId: ID!): OpenApiCollectionVersionPublishResult! onOpenApiCollectionVersionValidationUpdate(requestId: ID!): OpenApiCollectionVersionValidationResult! - onPersistedQueriesChanged(apiId: ID! stageName: String!): PersistedQueriesChanged! + 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! } @@ -3883,7 +3958,7 @@ union AuthorizationEventLogResource = Organization | Workspace | Api union AuthorizationEventLogSubject = User | ApiKey -union BeginFusionConfigurationPublishError = UnauthorizedOperation | ApiNotFoundError | StageNotFoundError | SubgraphInvalidError | InvalidProcessingStateTransitionError +union BeginFusionConfigurationPublishError = UnauthorizedOperation | ApiNotFoundError | StageNotFoundError | SubgraphInvalidError | InvalidProcessingStateTransitionError | InvalidSourceMetadataInputError union CancelDeploymentError = UnauthorizedOperation | DeploymentNotFoundError | DeploymentCannotBeCancelledError @@ -3935,7 +4010,7 @@ union EnumValueChange = DeprecatedChange | DescriptionChanged union FieldChange = ArgumentAdded | ArgumentChanged | ArgumentRemoved | DeprecatedChange | DescriptionChanged | TypeChanged -union FusionConfigurationDeploymentError = PersistedQueryValidationError | SchemaChangeViolationError | InvalidGraphQLSchemaError | OpenApiCollectionValidationError | McpFeatureCollectionValidationError +union FusionConfigurationDeploymentError = PersistedQueryValidationError | McpFeatureCollectionValidationError | OpenApiCollectionValidationError | SchemaChangeViolationError | InvalidGraphQLSchemaError union InputFieldChange = DeprecatedChange | DescriptionChanged | TypeChanged @@ -3959,13 +4034,13 @@ union PollSchemaVersionPublishRequestError = SchemaVersionRequestNotFoundError | union PollSchemaVersionValidationRequestError = SchemaVersionRequestNotFoundError | UnauthorizedOperation -union PublishClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | ClientVersionNotFoundError +union PublishClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | ClientVersionNotFoundError | InvalidSourceMetadataInputError -union PublishMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation | McpFeatureCollectionVersionNotFoundError +union PublishMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation | McpFeatureCollectionVersionNotFoundError | InvalidSourceMetadataInputError -union PublishOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation | OpenApiCollectionVersionNotFoundError +union PublishOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation | OpenApiCollectionVersionNotFoundError | InvalidSourceMetadataInputError -union PublishSchemaError = StageNotFoundError | ApiNotFoundError | SchemaNotFoundError | UnauthorizedOperation +union PublishSchemaError = StageNotFoundError | ApiNotFoundError | SchemaNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError union PushDocumentChangesError = UnauthorizedOperation | ChangeStructureInvalid @@ -3983,12 +4058,14 @@ union ScalarChange = DescriptionChanged union SchemaChangeLogEntry = DirectiveModifiedChange | EnumModifiedChange | InputObjectModifiedChange | InterfaceModifiedChange | ObjectModifiedChange | ScalarModifiedChange | TypeSystemMemberAddedChange | TypeSystemMemberModifiedChange | TypeSystemMemberRemovedChange | UnionModifiedChange -union SchemaDeploymentError = PersistedQueryValidationError | SchemaChangeViolationError | OperationsAreNotAllowedError | SchemaVersionSyntaxError | InvalidGraphQLSchemaError | OpenApiCollectionValidationError | McpFeatureCollectionValidationError +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 +union SourceMetadata = GitHubSourceMetadata + union StageCondition = AfterStageCondition union StartFusionConfigurationCompositionError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError @@ -4009,25 +4086,25 @@ union UpdateStagesError = ApiNotFoundError | StageNotFoundError | StagesHavePubl union UpdateThemeSettingsError = UnauthorizedOperation | ValidationError -union UploadClientError = ClientNotFoundError | ConcurrentOperationError | InvalidPersistedQueryError | UnauthorizedOperation | DuplicatedTagError +union UploadClientError = ClientNotFoundError | ConcurrentOperationError | InvalidPersistedQueryError | UnauthorizedOperation | DuplicatedTagError | InvalidSourceMetadataInputError -union UploadFusionSubgraphError = InvalidFusionSourceSchemaArchiveError | ApiNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError +union UploadFusionSubgraphError = InvalidFusionSourceSchemaArchiveError | ApiNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidSourceMetadataInputError -union UploadMcpFeatureCollectionError = McpFeatureCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidMcpFeatureCollectionArchiveError +union UploadMcpFeatureCollectionError = McpFeatureCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidMcpFeatureCollectionArchiveError | InvalidSourceMetadataInputError -union UploadOpenApiCollectionError = OpenApiCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidOpenApiCollectionArchiveError +union UploadOpenApiCollectionError = OpenApiCollectionNotFoundError | ConcurrentOperationError | UnauthorizedOperation | DuplicatedTagError | InvalidOpenApiCollectionArchiveError | InvalidSourceMetadataInputError -union UploadSchemaError = ApiNotFoundError | ConcurrentOperationError | DuplicatedTagError | UnauthorizedOperation +union UploadSchemaError = ApiNotFoundError | ConcurrentOperationError | DuplicatedTagError | UnauthorizedOperation | InvalidSourceMetadataInputError -union ValidateClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation +union ValidateClientError = StageNotFoundError | ClientNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError union ValidateFusionConfigurationCompositionError = UnauthorizedOperation | FusionConfigurationRequestNotFoundError | InvalidProcessingStateTransitionError -union ValidateMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation +union ValidateMcpFeatureCollectionError = StageNotFoundError | McpFeatureCollectionNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError -union ValidateOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation +union ValidateOpenApiCollectionError = StageNotFoundError | OpenApiCollectionNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError -union ValidateSchemaError = StageNotFoundError | SchemaNotFoundError | ApiNotFoundError | UnauthorizedOperation +union ValidateSchemaError = StageNotFoundError | SchemaNotFoundError | ApiNotFoundError | UnauthorizedOperation | InvalidSourceMetadataInputError union WorkspaceChangeError = ChangeValidationFailed | HasBeenChangedConflict | HasBeenDeletedConflict | IdentifierCollisionConflict | UnexpectedErrorOnChange | WorkspaceNotFoundForChange @@ -4139,9 +4216,11 @@ input BearerAuthenticationFlowOptionsInput { input BeginFusionConfigurationPublishInput { apiId: ID! + source: SourceMetadataInput stageName: String! - subgraphApiId: ID - subgraphName: String + subgraphApiId: ID @deprecated(reason: "Use `subgraphs` instead.") + subgraphName: String @deprecated(reason: "Use `subgraphs` instead.") + subgraphs: [FusionSubgraphVersionInput!] tag: String! waitForApproval: Boolean! = false } @@ -4266,6 +4345,21 @@ input EnvironmentVariableInput { value: String! } +input FusionSubgraphVersionInput { + name: String! + tag: String! +} + +input GitHubSourceMetadataInput { + actor: String! + commitHash: String! + jobId: String + repositoryUrl: URL! + runId: String! + runNumber: String! + workflowName: String! +} + input GraphQLCoordinateOrderByInput { clientCount: SortEnumType errorRate: SortEnumType @@ -4346,6 +4440,7 @@ input PollSchemaVersionValidationRequestInput { input PublishClientInput { clientId: ID! force: Boolean! = false + source: SourceMetadataInput stage: String! tag: String! waitForApproval: Boolean! = false @@ -4354,6 +4449,7 @@ input PublishClientInput { input PublishMcpFeatureCollectionInput { force: Boolean! = false mcpFeatureCollectionId: ID! + source: SourceMetadataInput stage: String! tag: String! waitForApproval: Boolean! = false @@ -4362,6 +4458,7 @@ input PublishMcpFeatureCollectionInput { input PublishOpenApiCollectionInput { force: Boolean! = false openApiCollectionId: ID! + source: SourceMetadataInput stage: String! tag: String! waitForApproval: Boolean! = false @@ -4370,6 +4467,7 @@ input PublishOpenApiCollectionInput { input PublishSchemaInput { apiId: ID! force: Boolean! = false + source: SourceMetadataInput stage: String! tag: String! waitForApproval: Boolean! = false @@ -4448,6 +4546,10 @@ input SetActiveWorkspaceInput { workspaceId: ID! } +input SourceMetadataInput @oneOf { + github: GitHubSourceMetadataInput +} + input StageConditionUpdateInput { afterStage: String! } @@ -4513,36 +4615,42 @@ input UpdateThemeSettingsInput { input UploadClientInput { clientId: ID! operations: Upload! + source: SourceMetadataInput tag: String! } input UploadFusionSubgraphInput { apiId: ID! archive: Upload! + source: SourceMetadataInput tag: String! } input UploadMcpFeatureCollectionInput { collection: Upload! mcpFeatureCollectionId: ID! + source: SourceMetadataInput tag: String! } input UploadOpenApiCollectionInput { collection: Upload! openApiCollectionId: ID! + source: SourceMetadataInput tag: String! } input UploadSchemaInput { apiId: ID! schema: Upload! + source: SourceMetadataInput tag: String! } input ValidateClientInput { clientId: ID! operations: Upload! + source: SourceMetadataInput stage: String! } @@ -4554,18 +4662,21 @@ input ValidateFusionConfigurationCompositionInput { input ValidateMcpFeatureCollectionInput { collection: Upload! mcpFeatureCollectionId: ID! + source: SourceMetadataInput stage: String! } input ValidateOpenApiCollectionInput { collection: Upload! openApiCollectionId: ID! + source: SourceMetadataInput stage: String! } input ValidateSchemaInput { apiId: ID! schema: Upload! + source: SourceMetadataInput stage: String! } @@ -4797,6 +4908,13 @@ enum SortEnumType { DESC } +enum StageChangeKind { + FUSION_CONFIGURATION + CLIENT + OPEN_API_COLLECTION + MCP_FEATURE_COLLECTION +} + enum StageChangeLogKind { SCHEMA CLIENT @@ -4848,6 +4966,9 @@ scalar DateTime @specifiedBy(url: "https://scalars.graphql.org/chillicream/date- "The `Long` scalar type represents a signed 64-bit integer." scalar Long @specifiedBy(url: "https://scalars.graphql.org/chillicream/long.html") +"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") + "The `URL` scalar type represents a Uniform Resource Locator (URL) as defined by RFC 3986." scalar URL @specifiedBy(url: "https://scalars.graphql.org/chillicream/url.html") From f924145dc2fc6eac75b03303d926dbc78ff0e698 Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 24 Feb 2026 10:04:40 +0100 Subject: [PATCH 2/6] Add --source-metadata option --- .../Commands/Clients/PublishClientCommand.cs | 37 +++++++++---- .../Commands/Clients/UploadClientCommand.cs | 6 +- .../Commands/Clients/ValidateClientCommand.cs | 6 +- .../Commands/Fusion/FusionPublishCommand.cs | 13 +++++ .../Commands/Fusion/FusionPublishHelpers.cs | 2 + .../Commands/Fusion/FusionUploadCommand.cs | 7 ++- .../FusionConfigurationPublishBeginCommand.cs | 5 ++ .../Mcp/PublishMcpFeatureCollectionCommand.cs | 37 +++++++++---- .../Mcp/UploadMcpFeatureCollectionCommand.cs | 6 +- .../ValidateMcpFeatureCollectionCommand.cs | 6 +- .../PublishOpenApiCollectionCommand.cs | 37 +++++++++---- .../OpenApi/UploadOpenApiCollectionCommand.cs | 6 +- .../ValidateOpenApiCollectionCommand.cs | 6 +- .../Commands/Schemas/PublishSchemaCommand.cs | 37 +++++++++---- .../Commands/Schemas/UploadSchemaCommand.cs | 6 +- .../Commands/Schemas/ValidateSchemaCommand.cs | 6 +- .../Helpers/SourceMetadataHelper.cs | 55 +++++++++++++++++++ .../Options/SourceMetadataOption.cs | 10 ++++ 18 files changed, 235 insertions(+), 53 deletions(-) create mode 100644 src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs create mode 100644 src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs index ed894c6e7b4..6597add0ecb 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs @@ -21,17 +21,30 @@ public PublishClientCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); - this.SetHandler( - ExecuteAsync, - Bind.FromServiceProvider(), - Bind.FromServiceProvider(), - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Bind.FromServiceProvider()); + this.SetHandler(async context => + { + var console = context.BindingContext.GetRequiredService(); + var client = context.BindingContext.GetRequiredService(); + var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var stage = context.ParseResult.GetValueForOption(Opt.Instance)!; + var clientId = context.ParseResult.GetValueForOption(Opt.Instance)!; + var force = context.ParseResult.GetValueForOption(Opt.Instance); + var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + + context.ExitCode = await ExecuteAsync( + console, + client, + tag, + stage, + clientId, + force, + waitForApproval, + sourceMetadataJson, + context.GetCancellationToken()); + }); } private static async Task ExecuteAsync( @@ -42,6 +55,7 @@ private static async Task ExecuteAsync( string clientId, bool force, bool waitForApproval, + string? sourceMetadataJson, CancellationToken ct) { console.Title( @@ -73,7 +87,8 @@ async Task PublishClient(StatusContext? ctx) ClientId = clientId, Stage = stage, Tag = tag, - WaitForApproval = waitForApproval + WaitForApproval = waitForApproval, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; if (force) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs index d41b3afd452..f30866d431c 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs @@ -16,6 +16,7 @@ public UploadClientCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -24,6 +25,7 @@ public UploadClientCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -33,6 +35,7 @@ private static async Task ExecuteAsync( string tag, FileInfo operationsFile, string clientId, + string? sourceMetadataJson, CancellationToken cancellationToken) { console.Title($"Upload operations {operationsFile.FullName.EscapeMarkup()}"); @@ -63,7 +66,8 @@ async Task UploadClient(StatusContext? ctx) { Operations = new Upload(stream, "operations.graphql"), ClientId = clientId, - Tag = tag + Tag = tag, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Uploading Client.."); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs index 53992ee4fc5..a8dafe5f317 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs @@ -19,6 +19,7 @@ public ValidateClientCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -27,6 +28,7 @@ public ValidateClientCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -36,6 +38,7 @@ private static async Task ExecuteAsync( string stage, string clientId, FileInfo operationsFile, + string? sourceMetadataJson, CancellationToken ct) { console.Title($"Validate to {stage.EscapeMarkup()}"); @@ -68,7 +71,8 @@ async Task ValidateClient(StatusContext? ctx) { ClientId = clientId, Stage = stage, - Operations = new Upload(stream, "operations.graphql") + Operations = new Upload(stream, "operations.graphql"), + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Create validation request"); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs index 9171447d6c8..b55df7681ed 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs @@ -42,6 +42,7 @@ public FusionPublishCommand() : base("publish") AddOption(Opt.Instance); AddOption(archiveOption); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.AddNitroCloudDefaultOptions(); AddValidator(result => @@ -72,6 +73,7 @@ public FusionPublishCommand() : base("publish") var stageName = context.ParseResult.GetValueForOption(Opt.Instance)!; var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); var console = context.BindingContext.GetRequiredService(); var apiClient = context.BindingContext.GetRequiredService(); @@ -85,6 +87,7 @@ public FusionPublishCommand() : base("publish") apiId, stageName, tag, + sourceMetadataJson, console, apiClient, httpClientFactory, @@ -100,11 +103,14 @@ private static async Task ExecuteAsync( string apiId, string stageName, string tag, + string? sourceMetadataJson, IAnsiConsole console, IApiClient client, IHttpClientFactory httpClientFactory, CancellationToken cancellationToken) { + var source = SourceMetadataHelper.Parse(sourceMetadataJson); + if (archiveFile is not null) { if (!File.Exists(archiveFile)) @@ -117,6 +123,7 @@ private static async Task ExecuteAsync( stageName, tag, archiveFile, + source, console, client, cancellationToken); @@ -199,6 +206,7 @@ private static async Task ExecuteAsync( newSourceSchemas, sourceSchemaVersions, compositionSettings: null, + source, console, client, httpClientFactory, @@ -210,6 +218,7 @@ private static async Task PublishFusionConfigurationAsync( string stageName, string tag, string archiveFilePath, + SourceMetadataInput? source, IAnsiConsole console, IApiClient client, CancellationToken cancellationToken) @@ -238,6 +247,7 @@ await console subgraphName: null, sourceSchemaVersions: null, waitForApproval: false, + source, context, console, client, @@ -290,6 +300,7 @@ await FusionPublishHelpers.UploadFusionArchiveAsync( subgraphName: null, sourceSchemaVersions: null, waitForApproval: false, + source, statusContext: null, console, client, @@ -338,6 +349,7 @@ private static async Task PublishFusionConfigurationAsync( Dictionary newSourceSchemas, FusionPublishHelpers.SourceSchemaVersion[] sourceSchemaVersions, CompositionSettings? compositionSettings, + SourceMetadataInput? source, IAnsiConsole console, IApiClient client, IHttpClientFactory httpClientFactory, @@ -478,6 +490,7 @@ Task RequestDeploymentSlotAsync(StatusContext? statusContext) subgraphName: null, sourceSchemaVersions, waitForApproval: false, + source, statusContext, console, client, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs index 2ca24d45321..1d651faa0db 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs @@ -25,6 +25,7 @@ public static async Task RequestDeploymentSlotAsync( string? subgraphName, SourceSchemaVersion[]? sourceSchemaVersions, bool waitForApproval, + SourceMetadataInput? source, StatusContext? statusContext, IAnsiConsole console, IApiClient client, @@ -38,6 +39,7 @@ public static async Task RequestDeploymentSlotAsync( SubgraphName = subgraphName, SubgraphApiId = subgraphId, WaitForApproval = waitForApproval, + Source = source, Subgraphs = sourceSchemaVersions is { Length: > 0 } ? sourceSchemaVersions .Select(x => new FusionSubgraphVersionInput diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs index 1942ff3fe13..95f235371f1 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs @@ -25,6 +25,7 @@ public FusionUploadCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.AddNitroCloudDefaultOptions(); this.SetHandler(async context => @@ -33,6 +34,7 @@ public FusionUploadCommand() : base("upload") var sourceSchemaFile = context.ParseResult.GetValueForOption(Opt.Instance)!; var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); var console = context.BindingContext.GetRequiredService(); var apiClient = context.BindingContext.GetRequiredService(); @@ -44,6 +46,7 @@ public FusionUploadCommand() : base("upload") sourceSchemaFile, tag, apiId, + sourceMetadataJson, context.GetCancellationToken()); }); } @@ -55,6 +58,7 @@ private static async Task ExecuteAsync( string sourceSchemaFilePath, string tag, string apiId, + string? sourceMetadataJson, CancellationToken cancellationToken) { if (string.IsNullOrEmpty(workingDirectory)) @@ -120,7 +124,8 @@ await archive.SetSchemaAsync( { Archive = new Upload(archiveStream, "source-schema.zip"), ApiId = apiId, - Tag = tag + Tag = tag, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; var result = await client.UploadFusionSubgraph.ExecuteAsync(input, cancellationToken); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs index 45d55ad0859..e2a7d974e2f 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs @@ -20,6 +20,7 @@ public FusionConfigurationPublishBeginCommand() : base("begin") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -48,6 +49,9 @@ private static async Task ExecuteAsync( context.ParseResult.GetValueForOption(Opt.Instance)!; var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = + context.ParseResult.GetValueForOption(Opt.Instance); + var source = SourceMetadataHelper.Parse(sourceMetadataJson); console.Title("Requesting a deployment slot"); @@ -76,6 +80,7 @@ async Task RequestDeploymentSlotAsync(StatusContext? ctx) subgraphName, sourceSchemaVersions: null, waitForApproval, + source, ctx, console, client, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs index 9ca43132551..e09226e0bfc 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs @@ -22,17 +22,30 @@ public PublishMcpFeatureCollectionCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); - this.SetHandler( - ExecuteAsync, - Bind.FromServiceProvider(), - Bind.FromServiceProvider(), - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Bind.FromServiceProvider()); + this.SetHandler(async context => + { + var console = context.BindingContext.GetRequiredService(); + var client = context.BindingContext.GetRequiredService(); + var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var stage = context.ParseResult.GetValueForOption(Opt.Instance)!; + var mcpFeatureCollectionId = context.ParseResult.GetValueForOption(Opt.Instance)!; + var force = context.ParseResult.GetValueForOption(Opt.Instance); + var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + + context.ExitCode = await ExecuteAsync( + console, + client, + tag, + stage, + mcpFeatureCollectionId, + force, + waitForApproval, + sourceMetadataJson, + context.GetCancellationToken()); + }); } private static async Task ExecuteAsync( @@ -43,6 +56,7 @@ private static async Task ExecuteAsync( string mcpFeatureCollectionId, bool force, bool waitForApproval, + string? sourceMetadataJson, CancellationToken ct) { console.Title( @@ -72,7 +86,8 @@ async Task PublishMcpFeatureCollection(StatusContext? ctx) McpFeatureCollectionId = mcpFeatureCollectionId, Stage = stage, Tag = tag, - WaitForApproval = waitForApproval + WaitForApproval = waitForApproval, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; if (force) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs index 4877e4e5f73..7efc083fd98 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs @@ -18,6 +18,7 @@ public UploadMcpFeatureCollectionCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -27,6 +28,7 @@ public UploadMcpFeatureCollectionCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -37,6 +39,7 @@ private static async Task ExecuteAsync( List promptPatterns, List toolPatterns, string mcpFeatureCollectionId, + string? sourceMetadataJson, CancellationToken cancellationToken) { if (console.IsHumanReadable()) @@ -90,7 +93,8 @@ await McpFeatureCollectionHelpers.BuildMcpFeatureCollectionArchive( { Collection = new Upload(archiveStream, "collection.zip"), McpFeatureCollectionId = mcpFeatureCollectionId, - Tag = tag + Tag = tag, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Uploading MCP Feature Collection.."); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs index 7e5a7a6ccd6..f6bf5015c1f 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs @@ -21,6 +21,7 @@ public ValidateMcpFeatureCollectionCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -30,6 +31,7 @@ public ValidateMcpFeatureCollectionCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -40,6 +42,7 @@ private static async Task ExecuteAsync( string mcpFeatureCollectionId, List promptPatterns, List toolPatterns, + string? sourceMetadataJson, CancellationToken ct) { console.Title($"Validate against {stage.EscapeMarkup()}"); @@ -94,7 +97,8 @@ async Task ValidateMcpFeatureCollection(StatusContext? ctx) { McpFeatureCollectionId = mcpFeatureCollectionId, Stage = stage, - Collection = new Upload(archiveStream, "collection.zip") + Collection = new Upload(archiveStream, "collection.zip"), + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; var requestId = await ValidateAsync(console, client, input, ct); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs index 7d1f3fba6e9..b3324ac910f 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs @@ -22,17 +22,30 @@ public PublishOpenApiCollectionCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); - this.SetHandler( - ExecuteAsync, - Bind.FromServiceProvider(), - Bind.FromServiceProvider(), - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Bind.FromServiceProvider()); + this.SetHandler(async context => + { + var console = context.BindingContext.GetRequiredService(); + var client = context.BindingContext.GetRequiredService(); + var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var stage = context.ParseResult.GetValueForOption(Opt.Instance)!; + var openApiCollectionId = context.ParseResult.GetValueForOption(Opt.Instance)!; + var force = context.ParseResult.GetValueForOption(Opt.Instance); + var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + + context.ExitCode = await ExecuteAsync( + console, + client, + tag, + stage, + openApiCollectionId, + force, + waitForApproval, + sourceMetadataJson, + context.GetCancellationToken()); + }); } private static async Task ExecuteAsync( @@ -43,6 +56,7 @@ private static async Task ExecuteAsync( string openApiCollectionId, bool force, bool waitForApproval, + string? sourceMetadataJson, CancellationToken ct) { console.Title( @@ -72,7 +86,8 @@ async Task PublishOpenApiCollection(StatusContext? ctx) OpenApiCollectionId = openApiCollectionId, Stage = stage, Tag = tag, - WaitForApproval = waitForApproval + WaitForApproval = waitForApproval, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; if (force) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs index 1f64408e734..d3c3b4e6cb9 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs @@ -17,6 +17,7 @@ public UploadOpenApiCollectionCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -25,6 +26,7 @@ public UploadOpenApiCollectionCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -34,6 +36,7 @@ private static async Task ExecuteAsync( string tag, List patterns, string openApiCollectionId, + string? sourceMetadataJson, CancellationToken cancellationToken) { if (console.IsHumanReadable()) @@ -74,7 +77,8 @@ async Task UploadOpenApiCollection(StatusContext? ctx) { Collection = new Upload(archiveStream, "collection.zip"), OpenApiCollectionId = openApiCollectionId, - Tag = tag + Tag = tag, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Uploading OpenAPI collection.."); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs index bc4c36f190b..9116443ff1a 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs @@ -20,6 +20,7 @@ public ValidateOpenApiCollectionCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -28,6 +29,7 @@ public ValidateOpenApiCollectionCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -37,6 +39,7 @@ private static async Task ExecuteAsync( string stage, string openApiCollectionId, List patterns, + string? sourceMetadataJson, CancellationToken ct) { console.Title($"Validate against {stage.EscapeMarkup()}"); @@ -83,7 +86,8 @@ async Task ValidateOpenApiCollection(StatusContext? ctx) { OpenApiCollectionId = openApiCollectionId, Stage = stage, - Collection = new Upload(archiveStream, "collection.zip") + Collection = new Upload(archiveStream, "collection.zip"), + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; var requestId = await ValidateAsync(console, client, input, ct); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs index 49d420d93b3..4d9966f51a2 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs @@ -22,17 +22,30 @@ public PublishSchemaCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); - this.SetHandler( - ExecuteAsync, - Bind.FromServiceProvider(), - Bind.FromServiceProvider(), - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Opt.Instance, - Bind.FromServiceProvider()); + this.SetHandler(async context => + { + var console = context.BindingContext.GetRequiredService(); + var client = context.BindingContext.GetRequiredService(); + var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; + var stage = context.ParseResult.GetValueForOption(Opt.Instance)!; + var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; + var force = context.ParseResult.GetValueForOption(Opt.Instance); + var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + + context.ExitCode = await ExecuteAsync( + console, + client, + tag, + stage, + apiId, + force, + waitForApproval, + sourceMetadataJson, + context.GetCancellationToken()); + }); } private static async Task ExecuteAsync( @@ -43,6 +56,7 @@ private static async Task ExecuteAsync( string apiId, bool force, bool waitForApproval, + string? sourceMetadataJson, CancellationToken ct) { console.Title( @@ -74,7 +88,8 @@ async Task PublishSchema(StatusContext? ctx) ApiId = apiId, Stage = stage, Tag = tag, - WaitForApproval = waitForApproval + WaitForApproval = waitForApproval, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; if (force) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs index d250819009d..4e3868e1b9e 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs @@ -17,6 +17,7 @@ public UploadSchemaCommand() AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -25,6 +26,7 @@ public UploadSchemaCommand() Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -34,6 +36,7 @@ private static async Task ExecuteAsync( string tag, FileInfo schemaFile, string apiId, + string? sourceMetadataJson, CancellationToken cancellationToken) { console.Title($"Upload schema {schemaFile.FullName.EscapeMarkup()}"); @@ -64,7 +67,8 @@ async Task UploadSchema(StatusContext? ctx) { Schema = new Upload(stream, "schema.graphqls"), ApiId = apiId, - Tag = tag + Tag = tag, + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Uploading Schema.."); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs index f22626f2561..c09e2fd7207 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs @@ -19,6 +19,7 @@ public ValidateSchemaCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -27,6 +28,7 @@ public ValidateSchemaCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } @@ -36,6 +38,7 @@ private static async Task ExecuteAsync( string stage, string apiId, FileInfo schemaFile, + string? sourceMetadataJson, CancellationToken ct) { console.Title($"Validate to {stage.EscapeMarkup()}"); @@ -68,7 +71,8 @@ async Task ValidateSchema(StatusContext? ctx) { ApiId = apiId, Stage = stage, - Schema = new Upload(stream, "operations.graphql") + Schema = new Upload(stream, "operations.graphql"), + Source = SourceMetadataHelper.Parse(sourceMetadataJson) }; console.Log("Create validation request"); diff --git a/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs new file mode 100644 index 00000000000..7a13dc06680 --- /dev/null +++ b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs @@ -0,0 +1,55 @@ +using System.Text.Json; +using System.Text.Json.Serialization; +using ChilliCream.Nitro.CommandLine.Client; + +namespace ChilliCream.Nitro.CommandLine.Helpers; + +internal static class SourceMetadataHelper +{ + public static SourceMetadataInput? Parse(string? json) + { + if (string.IsNullOrWhiteSpace(json)) + { + return null; + } + + GitHubSourceMetadataDto dto; + + try + { + dto = JsonSerializer.Deserialize(json, SourceMetadataJsonContext.Default.GitHubSourceMetadataDto) + ?? throw new ExitException("Failed to parse --source-metadata: deserialized value was null."); + } + catch (JsonException ex) + { + throw new ExitException($"Failed to parse --source-metadata: {ex.Message}"); + } + + return new SourceMetadataInput + { + Github = new GitHubSourceMetadataInput + { + Actor = dto.Actor, + CommitHash = dto.CommitHash, + WorkflowName = dto.WorkflowName, + RunNumber = dto.RunNumber, + RunId = dto.RunId, + JobId = dto.JobId, + RepositoryUrl = new Uri(dto.RepositoryUrl) + } + }; + } + + internal sealed record GitHubSourceMetadataDto( + string Actor, + string CommitHash, + string WorkflowName, + string RunNumber, + string RunId, + string? JobId, + string RepositoryUrl); + + [JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase)] + [JsonSerializable(typeof(GitHubSourceMetadataDto))] + private partial class SourceMetadataJsonContext : JsonSerializerContext; +} diff --git a/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs b/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs new file mode 100644 index 00000000000..48c2a140d89 --- /dev/null +++ b/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs @@ -0,0 +1,10 @@ +namespace ChilliCream.Nitro.CommandLine.Options; + +internal sealed class SourceMetadataOption : Option +{ + public SourceMetadataOption() : base("--source-metadata") + { + Description = "JSON metadata about the environment this invocation is triggered from."; + IsRequired = false; + } +} From 308d87e5646b2e3ab64d18cd127858248e5757ca Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 24 Feb 2026 15:12:18 +0100 Subject: [PATCH 3/6] Fix build --- .../Commands/Clients/PublishClientCommand.cs | 4 +- .../Commands/Clients/UploadClientCommand.cs | 4 +- .../Commands/Clients/ValidateClientCommand.cs | 4 +- .../Commands/Fusion/FusionPublishCommand.cs | 4 +- .../Commands/Fusion/FusionUploadCommand.cs | 4 +- .../FusionConfigurationPublishBeginCommand.cs | 4 +- .../Mcp/PublishMcpFeatureCollectionCommand.cs | 4 +- .../Mcp/UploadMcpFeatureCollectionCommand.cs | 4 +- .../ValidateMcpFeatureCollectionCommand.cs | 4 +- .../PublishOpenApiCollectionCommand.cs | 4 +- .../OpenApi/UploadOpenApiCollectionCommand.cs | 4 +- .../ValidateOpenApiCollectionCommand.cs | 4 +- .../Commands/Schemas/PublishSchemaCommand.cs | 4 +- .../Commands/Schemas/UploadSchemaCommand.cs | 4 +- .../Commands/Schemas/ValidateSchemaCommand.cs | 4 +- .../CommandLine/Generated/ApiClient.Client.cs | 2436 ++++++++++------- .../src/CommandLine/Helpers/ConsoleHelpers.cs | 45 +- .../Helpers/SourceMetadataHelper.cs | 26 +- .../Options/OptionalSourceMetadataOption.cs | 10 + .../Options/SourceMetadataOption.cs | 10 - .../src/CommandLine/fragments.graphql | 90 +- .../src/CommandLine/persisted/operations.json | 2 +- 22 files changed, 1596 insertions(+), 1083 deletions(-) create mode 100644 src/Nitro/CommandLine/src/CommandLine/Options/OptionalSourceMetadataOption.cs delete mode 100644 src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs index 6597add0ecb..33d759f28c9 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs @@ -21,7 +21,7 @@ public PublishClientCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler(async context => { @@ -32,7 +32,7 @@ public PublishClientCommand() : base("publish") var clientId = context.ParseResult.GetValueForOption(Opt.Instance)!; var force = context.ParseResult.GetValueForOption(Opt.Instance); var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); context.ExitCode = await ExecuteAsync( console, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs index f30866d431c..f29a85891bb 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/UploadClientCommand.cs @@ -16,7 +16,7 @@ public UploadClientCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -25,7 +25,7 @@ public UploadClientCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs index a8dafe5f317..1aa5054bb83 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs @@ -19,7 +19,7 @@ public ValidateClientCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -28,7 +28,7 @@ public ValidateClientCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs index b55df7681ed..6e449d14d83 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishCommand.cs @@ -42,7 +42,7 @@ public FusionPublishCommand() : base("publish") AddOption(Opt.Instance); AddOption(archiveOption); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.AddNitroCloudDefaultOptions(); AddValidator(result => @@ -73,7 +73,7 @@ public FusionPublishCommand() : base("publish") var stageName = context.ParseResult.GetValueForOption(Opt.Instance)!; var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); var console = context.BindingContext.GetRequiredService(); var apiClient = context.BindingContext.GetRequiredService(); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs index 95f235371f1..e40e415106e 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionUploadCommand.cs @@ -25,7 +25,7 @@ public FusionUploadCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.AddNitroCloudDefaultOptions(); this.SetHandler(async context => @@ -34,7 +34,7 @@ public FusionUploadCommand() : base("upload") var sourceSchemaFile = context.ParseResult.GetValueForOption(Opt.Instance)!; var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; var tag = context.ParseResult.GetValueForOption(Opt.Instance)!; - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); var console = context.BindingContext.GetRequiredService(); var apiClient = context.BindingContext.GetRequiredService(); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs index e2a7d974e2f..45f056407cc 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishBeginCommand.cs @@ -20,7 +20,7 @@ public FusionConfigurationPublishBeginCommand() : base("begin") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -50,7 +50,7 @@ private static async Task ExecuteAsync( var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); var sourceMetadataJson = - context.ParseResult.GetValueForOption(Opt.Instance); + context.ParseResult.GetValueForOption(Opt.Instance); var source = SourceMetadataHelper.Parse(sourceMetadataJson); console.Title("Requesting a deployment slot"); diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs index e09226e0bfc..813d263d6d4 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs @@ -22,7 +22,7 @@ public PublishMcpFeatureCollectionCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler(async context => { @@ -33,7 +33,7 @@ public PublishMcpFeatureCollectionCommand() : base("publish") var mcpFeatureCollectionId = context.ParseResult.GetValueForOption(Opt.Instance)!; var force = context.ParseResult.GetValueForOption(Opt.Instance); var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); context.ExitCode = await ExecuteAsync( console, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs index 7efc083fd98..8d73188bf6d 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/UploadMcpFeatureCollectionCommand.cs @@ -18,7 +18,7 @@ public UploadMcpFeatureCollectionCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -28,7 +28,7 @@ public UploadMcpFeatureCollectionCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs index f6bf5015c1f..c3b3d47c3d2 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs @@ -21,7 +21,7 @@ public ValidateMcpFeatureCollectionCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -31,7 +31,7 @@ public ValidateMcpFeatureCollectionCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs index b3324ac910f..33e7e204ef4 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs @@ -22,7 +22,7 @@ public PublishOpenApiCollectionCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler(async context => { @@ -33,7 +33,7 @@ public PublishOpenApiCollectionCommand() : base("publish") var openApiCollectionId = context.ParseResult.GetValueForOption(Opt.Instance)!; var force = context.ParseResult.GetValueForOption(Opt.Instance); var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); context.ExitCode = await ExecuteAsync( console, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs index d3c3b4e6cb9..5b9aa16aab0 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/UploadOpenApiCollectionCommand.cs @@ -17,7 +17,7 @@ public UploadOpenApiCollectionCommand() : base("upload") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -26,7 +26,7 @@ public UploadOpenApiCollectionCommand() : base("upload") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs index 9116443ff1a..b45c72a6c27 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs @@ -20,7 +20,7 @@ public ValidateOpenApiCollectionCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -29,7 +29,7 @@ public ValidateOpenApiCollectionCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs index 4d9966f51a2..c38d7f27a3a 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs @@ -22,7 +22,7 @@ public PublishSchemaCommand() : base("publish") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler(async context => { @@ -33,7 +33,7 @@ public PublishSchemaCommand() : base("publish") var apiId = context.ParseResult.GetValueForOption(Opt.Instance)!; var force = context.ParseResult.GetValueForOption(Opt.Instance); var waitForApproval = context.ParseResult.GetValueForOption(Opt.Instance); - var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); + var sourceMetadataJson = context.ParseResult.GetValueForOption(Opt.Instance); context.ExitCode = await ExecuteAsync( console, diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs index 4e3868e1b9e..02aa662412f 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/UploadSchemaCommand.cs @@ -17,7 +17,7 @@ public UploadSchemaCommand() AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -26,7 +26,7 @@ public UploadSchemaCommand() Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs index c09e2fd7207..caf177b4b66 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs @@ -19,7 +19,7 @@ public ValidateSchemaCommand() : base("validate") AddOption(Opt.Instance); AddOption(Opt.Instance); AddOption(Opt.Instance); - AddOption(Opt.Instance); + AddOption(Opt.Instance); this.SetHandler( ExecuteAsync, @@ -28,7 +28,7 @@ public ValidateSchemaCommand() : base("validate") Opt.Instance, Opt.Instance, Opt.Instance, - Opt.Instance, + Opt.Instance, Bind.FromServiceProvider()); } diff --git a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs index 49876e0a6c4..59b98479766 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Generated/ApiClient.Client.cs @@ -19658,12 +19658,18 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections + public partial interface IMcpFeatureCollectionValidationCollection { public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } public global::System.Collections.Generic.IReadOnlyList Entities { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections : IMcpFeatureCollectionValidationCollection + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections @@ -19672,12 +19678,18 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 + public partial interface IOpenApiCollectionValidationCollection { public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } public global::System.Collections.Generic.IReadOnlyList Entities { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 : IOpenApiCollectionValidationCollection + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollectionValidationCollection : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_1 @@ -19914,25 +19926,57 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IMcpFeatureCollectionValidationEntity { public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationPrompt { public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt : IMcpFeatureCollectionValidationPrompt + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationTool { public global::System.String Name { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool : IMcpFeatureCollectionValidationTool + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection @@ -19949,14 +19993,20 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + public partial interface IOpenApiCollectionValidationEntity { public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 : IOpenApiCollectionValidationEntity + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationEndpoint { public global::System.String HttpMethod { get; } public global::System.String Route { get; } @@ -19964,11 +20014,37 @@ public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 + public partial interface IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint : IOpenApiCollectionValidationEndpoint + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint + { + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationModel { public global::System.String Name { get; } } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel : IOpenApiCollectionValidationModel + { + public global::System.Collections.Generic.IReadOnlyList Errors { get; } + } + + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator + [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] + public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel + { + } + // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] public partial interface IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Changes_Changes @@ -48210,10 +48286,8 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpF // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -48238,23 +48312,20 @@ public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpF // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IValidateMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionValidationUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -61100,10 +61171,8 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -61248,23 +61317,20 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -61299,10 +61365,8 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -61313,10 +61377,8 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -61455,24 +61517,20 @@ public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFe // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishMcpFeatureCollectionCommandSubscription_OnMcpFeatureCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -76072,10 +76130,8 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -76220,24 +76276,20 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -76272,10 +76324,8 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -76286,10 +76336,8 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -76428,23 +76476,20 @@ public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiC // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities + public partial interface IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IPublishOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionPublishingUpdate_Deployment_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -78590,10 +78635,8 @@ public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -78618,24 +78661,20 @@ public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApi // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities + public partial interface IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IValidateOpenApiCollectionCommandSubscription_OnOpenApiCollectionVersionValidationUpdate_Errors_Collections_Entities, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -96576,10 +96615,8 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -96590,10 +96627,8 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -96834,23 +96869,20 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -96869,24 +96901,20 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -97178,10 +97206,8 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -97192,10 +97218,8 @@ public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishin // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 + public partial interface IOnSchemaVersionPublishUpdated_OnSchemaVersionPublishingUpdate_Deployment_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -109166,10 +109190,8 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -109180,10 +109202,8 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -109545,23 +109565,20 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -109580,24 +109597,20 @@ public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValida // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1 + public partial interface IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnSchemaVersionValidationUpdated_OnSchemaVersionValidationUpdate_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -127709,10 +127722,8 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -127723,10 +127734,8 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -128208,23 +128217,20 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities : IMcpFeatureCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationPrompt { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_McpFeatureCollectionValidationTool : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities, IMcpFeatureCollectionValidationEntity_McpFeatureCollectionValidationTool { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -128243,24 +128249,20 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 : IOpenApiCollectionValidationEntity { - public global::System.Collections.Generic.IReadOnlyList Errors { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationEndpoint { - public global::System.String HttpMethod { get; } - public global::System.String Route { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1 + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_OpenApiCollectionValidationModel : IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Errors_Collections_Entities_1, IOpenApiCollectionValidationEntity_OpenApiCollectionValidationModel { - public global::System.String Name { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -128661,10 +128663,8 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections : IMcpFeatureCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_McpFeatureCollection? McpFeatureCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -128675,10 +128675,8 @@ public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionCon // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator [global::System.CodeDom.Compiler.GeneratedCode("StrawberryShake", "11.0.0")] - public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 + public partial interface IOnFusionConfigurationPublishingTaskChanged_OnFusionConfigurationPublishingTaskChanged_Deployment_Errors_Collections_1 : IOpenApiCollectionValidationCollection { - public global::ChilliCream.Nitro.CommandLine.Client.IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_OpenApiCollection? OpenApiCollection { get; } - public global::System.Collections.Generic.IReadOnlyList Entities { get; } } // StrawberryShake.CodeGeneration.CSharp.Generators.ResultInterfaceGenerator @@ -147540,29 +147538,32 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -147578,31 +147579,44 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -147618,6 +147632,14 @@ public partial interface IPublishClientVersionMutation : global::StrawberryShake /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -147642,7 +147664,7 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() public static OnClientVersionPublishUpdatedSubscriptionDocument Instance { get; } = new OnClientVersionPublishUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "b653a6a4dbd2d797d69ee87b43d3d391"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "2274beb3099335d340e29c9011e79a73"); public override global::System.String ToString() { @@ -148125,29 +148147,32 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -148163,31 +148188,44 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -148203,6 +148241,14 @@ private OnClientVersionPublishUpdatedSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -148735,29 +148781,32 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -148773,29 +148822,42 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -148813,6 +148875,14 @@ public OnClientVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -154198,28 +154268,32 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -154235,6 +154309,14 @@ public partial interface IValidateMcpFeatureCollectionCommandMutationMutation : /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { /// message /// } @@ -154262,7 +154344,7 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() public static ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "9a5ac6c756ae69d3cb53bae89f844cb6"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "fe2972801aa1d2abcc74cd8414984de2"); public override global::System.String ToString() { @@ -154314,26 +154396,30 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -154351,6 +154437,14 @@ private ValidateMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { /// message /// } @@ -154455,28 +154549,32 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -154492,6 +154590,14 @@ public ValidateMcpFeatureCollectionCommandSubscriptionSubscription(global::Straw /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { /// message /// } @@ -155667,26 +155773,30 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -155704,6 +155814,14 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { /// state /// } @@ -156125,29 +156243,32 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -156163,6 +156284,15 @@ public partial interface IPublishMcpFeatureCollectionCommandMutationMutation : g /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -156187,7 +156317,7 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() public static PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "953b6423bcadc90c2f30315980801a9d"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ef0120355e243bcdf6b6b3353f2b8c28"); public override global::System.String ToString() { @@ -156252,26 +156382,30 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -156289,6 +156423,14 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { /// state /// } @@ -156710,29 +156852,32 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -156748,6 +156893,15 @@ private PublishMcpFeatureCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -156862,26 +157016,30 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -156899,6 +157057,14 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { /// state /// } @@ -157320,27 +157486,30 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -157358,6 +157527,15 @@ public PublishMcpFeatureCollectionCommandSubscriptionSubscription(global::Strawb /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -159106,29 +159284,32 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -159144,6 +159325,15 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { /// state /// } @@ -159565,28 +159755,32 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -159602,6 +159796,14 @@ public partial interface IPublishOpenApiCollectionCommandMutationMutation : glob /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -159626,7 +159828,7 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() public static PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "3cb7cfb1e2c00815ac6b61d95b84b060"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "88e2921a77264a903dc0e5a2197cfe18"); public override global::System.String ToString() { @@ -159691,29 +159893,32 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -159729,6 +159934,15 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { /// state /// } @@ -160150,28 +160364,32 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -160187,6 +160405,14 @@ private PublishOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -160301,29 +160527,32 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -160339,6 +160568,15 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { /// state /// } @@ -160760,28 +160998,32 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -160797,6 +161039,14 @@ public PublishOpenApiCollectionCommandSubscriptionSubscription(global::Strawberr /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ProcessingTaskApproved on ProcessingTaskApproved { /// state /// } @@ -161116,29 +161366,32 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -161154,6 +161407,15 @@ public partial interface IValidateOpenApiCollectionCommandMutationMutation : glo /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { /// message /// } @@ -161181,7 +161443,7 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() public static ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument Instance { get; } = new ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f230bc4d51fb6f5456e272f3aa163aff"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "f8c29ad7ac636836aada903ed7b4e9f3"); public override global::System.String ToString() { @@ -161233,27 +161495,30 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -161271,6 +161536,15 @@ private ValidateOpenApiCollectionCommandSubscriptionSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { /// message /// } @@ -161375,29 +161649,32 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -161413,6 +161690,15 @@ public ValidateOpenApiCollectionCommandSubscriptionSubscription(global::Strawber /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { /// message /// } @@ -163601,29 +163887,32 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -163639,31 +163928,44 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -163679,6 +163981,14 @@ public partial interface IPublishSchemaVersionMutation : global::StrawberryShake /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { /// __typename /// state @@ -163767,7 +164077,7 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() public static OnSchemaVersionPublishUpdatedSubscriptionDocument Instance { get; } = new OnSchemaVersionPublishUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "a299690b49723e3cdbf46ea56ec77e25"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "1fd8d9d7682b643879c17af77b96caef"); public override global::System.String ToString() { @@ -164202,29 +164512,32 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -164240,29 +164553,42 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -164280,6 +164606,14 @@ private OnSchemaVersionPublishUpdatedSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { /// __typename /// state @@ -164828,29 +165162,32 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 @@ -164866,31 +165203,44 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 @@ -164906,6 +165256,14 @@ public OnSchemaVersionPublishUpdatedSubscription(global::StrawberryShake.IOperat /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { /// __typename /// state @@ -165979,27 +166337,30 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -166017,29 +166378,42 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -166057,6 +166431,14 @@ public partial interface IValidateSchemaVersionMutation : global::StrawberryShak /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { /// state /// changes { @@ -166084,7 +166466,7 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() public static OnSchemaVersionValidationUpdatedSubscriptionDocument Instance { get; } = new OnSchemaVersionValidationUpdatedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "50d28b9daaa1cc64ed3762123b19bc5a"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "8521648fbc9e310053367892fdbb8798"); public override global::System.String ToString() { @@ -166504,27 +166886,30 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -166542,29 +166927,42 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -166582,6 +166980,14 @@ private OnSchemaVersionValidationUpdatedSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { /// state /// changes { @@ -167054,27 +167460,30 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -167092,29 +167501,42 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -167132,6 +167554,14 @@ public OnSchemaVersionValidationUpdatedSubscription(global::StrawberryShake.IOpe /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { /// state /// changes { @@ -168603,27 +169033,30 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -168641,29 +169074,42 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -168681,6 +169127,14 @@ public partial interface IBeginFusionConfigurationPublishMutation : global::Stra /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ValidationInProgress on ValidationInProgress { /// state /// } @@ -168772,7 +169226,7 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() public static OnFusionConfigurationPublishingTaskChangedSubscriptionDocument Instance { get; } = new OnFusionConfigurationPublishingTaskChangedSubscriptionDocument(); public global::StrawberryShake.OperationKind Kind => global::StrawberryShake.OperationKind.Subscription; public global::System.ReadOnlySpan Body => new global::System.Byte[0]; - public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "ad7832cb824babc85c41b06418596ac6"); + public global::StrawberryShake.DocumentHash Hash { get; } = new global::StrawberryShake.DocumentHash("md5Hash", "26c1dde1391971efd46db06a45cf6746"); public override global::System.String ToString() { @@ -169208,27 +169662,30 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -169246,29 +169703,42 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -169286,6 +169756,14 @@ private OnFusionConfigurationPublishingTaskChangedSubscriptionDocument() /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ValidationInProgress on ValidationInProgress { /// state /// } @@ -169838,27 +170316,30 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { /// collections { /// __typename - /// openApiCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... OpenApiCollectionValidationDocumentError - /// ... OpenApiCollectionValidationEntityValidationError - /// } - /// ... on OpenApiCollectionValidationEndpoint { - /// httpMethod - /// route - /// } - /// ... on OpenApiCollectionValidationModel { - /// name - /// } - /// } + /// ... 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 { @@ -169876,29 +170357,42 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// message /// } /// + /// fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + /// httpMethod + /// route + /// } + /// + /// fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + /// name + /// } + /// /// fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { /// collections { /// __typename - /// mcpFeatureCollection { - /// __typename - /// id - /// name - /// } - /// entities { - /// __typename - /// errors { - /// __typename - /// ... McpFeatureCollectionValidationDocumentError - /// ... McpFeatureCollectionValidationEntityValidationError - /// } - /// ... on McpFeatureCollectionValidationPrompt { - /// name - /// } - /// ... on McpFeatureCollectionValidationTool { - /// name - /// } - /// } + /// ... 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 { @@ -169916,6 +170410,14 @@ public OnFusionConfigurationPublishingTaskChangedSubscription(global::Strawberry /// message /// } /// + /// fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + /// name + /// } + /// + /// fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + /// name + /// } + /// /// fragment ValidationInProgress on ValidationInProgress { /// state /// } diff --git a/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs b/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs index f373f55cb8c..045c576b32f 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs @@ -160,9 +160,7 @@ private static void PrintError(this IAnsiConsole console, IOpenApiCollectionVali foreach (var entityError in entity.Errors) { - if (entityError is - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationDocumentError - documentError) + if (entityError is IOpenApiCollectionValidationDocumentError documentError) { var errorLocation = string.Empty; if (documentError.Locations is { Count: > 0 } locations) @@ -172,9 +170,7 @@ private static void PrintError(this IAnsiConsole console, IOpenApiCollectionVali entityNode.AddNode($"{documentError.Message.EscapeMarkup()} {errorLocation}"); } - else if (entityError is - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_OpenApiCollectionValidationEntityValidationError - entityValidationError) + else if (entityError is IOpenApiCollectionValidationEntityValidationError entityValidationError) { entityNode.AddNode(entityValidationError.Message.EscapeMarkup()); } @@ -188,16 +184,12 @@ private static void PrintError(this IAnsiConsole console, IOpenApiCollectionVali console.Write(node); } - static string GetEntityNodeHeading( - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities - entity) + static string GetEntityNodeHeading(IOpenApiCollectionValidationEntity entity) { var heading = entity switch { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationEndpoint endpoint - => $"Endpoint '{endpoint.HttpMethod} {endpoint.Route}'", - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_OpenApiCollectionValidationModel model - => $"Model '{model.Name}'", + IOpenApiCollectionValidationEndpoint endpoint => $"Endpoint '{endpoint.HttpMethod} {endpoint.Route}'", + IOpenApiCollectionValidationModel model => $"Model '{model.Name}'", _ => "Unknown entity type" }; @@ -221,9 +213,7 @@ private static void PrintError(this IAnsiConsole console, IMcpFeatureCollectionV foreach (var entityError in entity.Errors) { - if (entityError is - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationDocumentError - documentError) + if (entityError is IMcpFeatureCollectionValidationDocumentError documentError) { var errorLocation = string.Empty; if (documentError.Locations is { Count: > 0 } locations) @@ -233,9 +223,7 @@ private static void PrintError(this IAnsiConsole console, IMcpFeatureCollectionV entityNode.AddNode($"{documentError.Message.EscapeMarkup()} {errorLocation}"); } - else if (entityError is - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_Errors_McpFeatureCollectionValidationEntityValidationError - entityValidationError) + else if (entityError is IMcpFeatureCollectionValidationEntityValidationError entityValidationError) { entityNode.AddNode(entityValidationError.Message.EscapeMarkup()); } @@ -249,16 +237,12 @@ private static void PrintError(this IAnsiConsole console, IMcpFeatureCollectionV console.Write(node); } - static string GetEntityNodeHeading( - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_1 - entity) + static string GetEntityNodeHeading(IMcpFeatureCollectionValidationEntity entity) { var heading = entity switch { - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationPrompt prompt - => $"Prompt '{prompt.Name}'", - IOnClientVersionPublishUpdated_OnClientVersionPublishingUpdate_Deployment_Errors_Collections_Entities_McpFeatureCollectionValidationTool tool - => $"Tool '{tool.Name}'", + IMcpFeatureCollectionValidationPrompt prompt => $"Prompt '{prompt.Name}'", + IMcpFeatureCollectionValidationTool tool => $"Tool '{tool.Name}'", _ => "Unknown entity type" }; @@ -290,7 +274,8 @@ private static void PrintInvalidOpenApiCollectionArchiveError(this IAnsiConsole "The server received an invalid archive. " + "This indicates a bug in the tooling. " + "Please notify ChilliCream." - + "Error received: " + message); + + "Error received: " + + message); } private static void PrintInvalidMcpFeatureCollectionArchiveError(this IAnsiConsole console, string message) @@ -299,7 +284,8 @@ private static void PrintInvalidMcpFeatureCollectionArchiveError(this IAnsiConso "The server received an invalid archive. " + "This indicates a bug in the tooling. " + "Please notify ChilliCream." - + "Error received: " + message); + + "Error received: " + + message); } private static void PrintMutationError(this IAnsiConsole ansiConsole, object error) @@ -371,7 +357,8 @@ private static void PrintMutationError(this IAnsiConsole ansiConsole, object err "The server received an invalid archive. " + "This indicates a bug in the tooling. " + "Please notify ChilliCream." - + "Error received: " + err.Message); + + "Error received: " + + err.Message); break; case IOpenApiCollectionValidationError err: diff --git a/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs index 7a13dc06680..0fc59ac9368 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs @@ -20,7 +20,7 @@ internal static class SourceMetadataHelper dto = JsonSerializer.Deserialize(json, SourceMetadataJsonContext.Default.GitHubSourceMetadataDto) ?? throw new ExitException("Failed to parse --source-metadata: deserialized value was null."); } - catch (JsonException ex) + catch (Exception ex) { throw new ExitException($"Failed to parse --source-metadata: {ex.Message}"); } @@ -39,17 +39,17 @@ internal static class SourceMetadataHelper } }; } +} - internal sealed record GitHubSourceMetadataDto( - string Actor, - string CommitHash, - string WorkflowName, - string RunNumber, - string RunId, - string? JobId, - string RepositoryUrl); +internal sealed record GitHubSourceMetadataDto( + string Actor, + string CommitHash, + string WorkflowName, + string RunNumber, + string RunId, + string? JobId, + string RepositoryUrl); - [JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase)] - [JsonSerializable(typeof(GitHubSourceMetadataDto))] - private partial class SourceMetadataJsonContext : JsonSerializerContext; -} +[JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase)] +[JsonSerializable(typeof(GitHubSourceMetadataDto))] +internal partial class SourceMetadataJsonContext : JsonSerializerContext; diff --git a/src/Nitro/CommandLine/src/CommandLine/Options/OptionalSourceMetadataOption.cs b/src/Nitro/CommandLine/src/CommandLine/Options/OptionalSourceMetadataOption.cs new file mode 100644 index 00000000000..81ca041bb5c --- /dev/null +++ b/src/Nitro/CommandLine/src/CommandLine/Options/OptionalSourceMetadataOption.cs @@ -0,0 +1,10 @@ +namespace ChilliCream.Nitro.CommandLine.Options; + +internal sealed class OptionalSourceMetadataOption : Option +{ + public OptionalSourceMetadataOption() : base("--source-metadata") + { + Description = "JSON metadata about the environment."; + IsRequired = false; + } +} diff --git a/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs b/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs deleted file mode 100644 index 48c2a140d89..00000000000 --- a/src/Nitro/CommandLine/src/CommandLine/Options/SourceMetadataOption.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace ChilliCream.Nitro.CommandLine.Options; - -internal sealed class SourceMetadataOption : Option -{ - public SourceMetadataOption() : base("--source-metadata") - { - Description = "JSON metadata about the environment this invocation is triggered from."; - IsRequired = false; - } -} diff --git a/src/Nitro/CommandLine/src/CommandLine/fragments.graphql b/src/Nitro/CommandLine/src/CommandLine/fragments.graphql index 2536b79d3da..0fd142804e2 100644 --- a/src/Nitro/CommandLine/src/CommandLine/fragments.graphql +++ b/src/Nitro/CommandLine/src/CommandLine/fragments.graphql @@ -742,26 +742,38 @@ fragment OpenApiCollectionVersionPublishFailed on OpenApiCollectionVersionPublis fragment OpenApiCollectionValidationError on OpenApiCollectionValidationError { collections { - openApiCollection { - id - name - } - entities { - errors { - ...OpenApiCollectionValidationDocumentError - ...OpenApiCollectionValidationEntityValidationError - } - ... on OpenApiCollectionValidationEndpoint { - httpMethod - route - } - ... on OpenApiCollectionValidationModel { - name - } - } + ...OpenApiCollectionValidationCollection } } +fragment OpenApiCollectionValidationCollection on OpenApiCollectionValidationCollection { + openApiCollection { + id + name + } + entities { + ...OpenApiCollectionValidationEntity + } +} + +fragment OpenApiCollectionValidationEntity on OpenApiCollectionValidationEntity { + errors { + ...OpenApiCollectionValidationDocumentError + ...OpenApiCollectionValidationEntityValidationError + } + ...OpenApiCollectionValidationEndpoint + ...OpenApiCollectionValidationModel +} + +fragment OpenApiCollectionValidationEndpoint on OpenApiCollectionValidationEndpoint { + httpMethod + route +} + +fragment OpenApiCollectionValidationModel on OpenApiCollectionValidationModel { + name +} + fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message @@ -826,23 +838,35 @@ fragment McpFeatureCollectionVersionPublishFailed on McpFeatureCollectionVersion fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { - mcpFeatureCollection { - id - name - } - entities { - errors { - ...McpFeatureCollectionValidationDocumentError - ...McpFeatureCollectionValidationEntityValidationError - } - ... on McpFeatureCollectionValidationPrompt { - name - } - ... on McpFeatureCollectionValidationTool { - name - } - } + ...McpFeatureCollectionValidationCollection + } +} + +fragment McpFeatureCollectionValidationCollection on McpFeatureCollectionValidationCollection { + mcpFeatureCollection { + id + name } + entities { + ...McpFeatureCollectionValidationEntity + } +} + +fragment McpFeatureCollectionValidationEntity on McpFeatureCollectionValidationEntity { + errors { + ...McpFeatureCollectionValidationDocumentError + ...McpFeatureCollectionValidationEntityValidationError + } + ...McpFeatureCollectionValidationPrompt + ...McpFeatureCollectionValidationTool +} + +fragment McpFeatureCollectionValidationPrompt on McpFeatureCollectionValidationPrompt { + name +} + +fragment McpFeatureCollectionValidationTool on McpFeatureCollectionValidationTool { + name } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { diff --git a/src/Nitro/CommandLine/src/CommandLine/persisted/operations.json b/src/Nitro/CommandLine/src/CommandLine/persisted/operations.json index 18f7d8440a0..442549f7ed0 100644 --- a/src/Nitro/CommandLine/src/CommandLine/persisted/operations.json +++ b/src/Nitro/CommandLine/src/CommandLine/persisted/operations.json @@ -1 +1 @@ -{"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 }","07c3c01d9752c92ac4dfe838c5ae069d":"mutation UploadClient($input: UploadClientInput!) { uploadClient(input: $input) { __typename clientVersion { __typename id } errors { __typename ... UnauthorizedOperation ... ClientNotFoundError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }","0941232cf9cd2c8d7f601407e9d64dbf":"query ShowApiCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... ApiDetailPrompt_Api } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","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 }","17c73eb7d485a0bf03b77efc0d4b7ecd":"mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { validateMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... 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 }","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 } } } }","20f39ffae2a0c07009008b6836aba650":"mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { validateSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","250a3500a6feb1b9b5ce5d47a3a47053":"mutation PublishClientVersion($input: PublishClientInput!) { publishClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ClientNotFoundError ... ClientVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... 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 }","300e84eb9429d49f38148115ee5a4681":"mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { beginFusionConfigurationPublish(input: $input) { __typename requestId errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ApiNotFoundError ... SubgraphInvalidError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","3097e85429305b83549a5845054a2148":"query FetchConfiguration($id: ID!, $stage: String!) { fusionConfigurationByApiId(id: $id, stage: $stage) { __typename downloadUrl tag } }","35993498c755e51178ea417965c3a164":"query ShowEnvironmentCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... EnvironmentDetailPrompt_Environment } } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","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 } }","3b9dd305052255f2532cc87618161446":"mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { publishOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... OpenApiCollectionNotFoundError ... OpenApiCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { tag message openApiCollectionId ... Error }","3cb7cfb1e2c00815ac6b61d95b84b060":"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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionVersionPublishSuccess on OpenApiCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 }","50d28b9daaa1cc64ed3762123b19bc5a":"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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment SchemaVersionValidationSuccess on SchemaVersionValidationSuccess { state changes { __typename ... SchemaChangeLogEntry } } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","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 }","66d4f44040a316fb6a0c2d1ba29de363":"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 } } }","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 }","6ad8835f646dd18170a8670d303ed8ae":"mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { uploadFusionSubgraph(input: $input) { __typename fusionSubgraphVersion { __typename id } errors { __typename ... UnauthorizedOperation ... DuplicatedTagError ... ConcurrentOperationError ... InvalidFusionSourceSchemaArchiveError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { message }","6f2552b2efab37e84bf41e0fd2ef37e1":"mutation UploadSchema($input: UploadSchemaInput!) { uploadSchema(input: $input) { __typename schemaVersion { __typename id } errors { __typename ... UnauthorizedOperation ... DuplicatedTagError ... ConcurrentOperationError ... ApiNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error }","736b80b8a3e39c5fcb5c192b42e084b4":"mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { publishMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... McpFeatureCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { tag message mcpFeatureCollectionId ... 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 }","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 }","7fec40ddb8a7c93a69817de82959f38a":"mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { uploadOpenApiCollection(input: $input) { __typename openApiCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... OpenApiCollectionNotFoundError ... InvalidOpenApiCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","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 }","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 }","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 }","953b6423bcadc90c2f30315980801a9d":"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 mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionVersionPublishSuccess on McpFeatureCollectionVersionPublishSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 }","9a5ac6c756ae69d3cb53bae89f844cb6":"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 mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationArchiveError on McpFeatureCollectionValidationArchiveError { message } fragment McpFeatureCollectionVersionValidationSuccess on McpFeatureCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","a299690b49723e3cdbf46ea56ec77e25":"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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment SchemaVersionPublishSuccess on SchemaVersionPublishSuccess { __typename state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } } } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 }","a50cce1fa951fcdc164e78c6f8726374":"mutation UpdateStages($input: UpdateStagesInput!) { updateStages(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... ApiNotFoundError ... StageNotFoundError ... StagesHavePublishedDependenciesError ... on Error { message __typename } } } } 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 } } } } }","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 }","ad7832cb824babc85c41b06418596ac6":"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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment ValidationInProgress on ValidationInProgress { state } fragment OperationInProgress on OperationInProgress { state } fragment WaitForApproval on WaitForApproval { state deployment { __typename ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 ProcessingTaskApproved on ProcessingTaskApproved { state }","b111cbd352fbdf127d499cd8d4f84433":"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 } } } 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 }","b653a6a4dbd2d797d69ee87b43d3d391":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment McpFeatureCollectionValidationError on McpFeatureCollectionValidationError { collections { __typename mcpFeatureCollection { __typename id name } entities { __typename errors { __typename ... McpFeatureCollectionValidationDocumentError ... McpFeatureCollectionValidationEntityValidationError } ... on McpFeatureCollectionValidationPrompt { name } ... on McpFeatureCollectionValidationTool { name } } } } fragment McpFeatureCollectionValidationDocumentError on McpFeatureCollectionValidationDocumentError { code message path locations { __typename column line } } fragment McpFeatureCollectionValidationEntityValidationError on McpFeatureCollectionValidationEntityValidationError { message } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","b9c18dd6d50ba180b90f48a77b096216":"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 } }","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 }","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 }","c8d21a0bb621a01952ffb6224bbbfe0d":"mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { createWorkspace(input: $input) { __typename workspace { __typename id name ... WorkspaceDetailPrompt_Workspace } errors { __typename ... on UnauthorizedOperation { message } ... on ValidationError { message } ... on Error { message } } } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal }","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 }","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 } } } }","d38a43a7b864ae9c3d787807b5f5f460":"mutation PublishSchemaVersion($input: PublishSchemaInput!) { publishSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","d9c3122efc6baad1e0bfd610a4503566":"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 } fragment Error on Error { message }","dc1c3bda5bde62cf3e0b9afcaf32824e":"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 } } } 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 }","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 }","e3e054b46fe9354a8fe15a8b0dea1624":"mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { validateOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... OpenApiCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... 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 }","eb5219613bc72b416f81729786573163":"mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { uploadMcpFeatureCollection(input: $input) { __typename mcpFeatureCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... McpFeatureCollectionNotFoundError ... InvalidMcpFeatureCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","f230bc4d51fb6f5456e272f3aa163aff":"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 openApiCollection { __typename id name } entities { __typename errors { __typename ... OpenApiCollectionValidationDocumentError ... OpenApiCollectionValidationEntityValidationError } ... on OpenApiCollectionValidationEndpoint { httpMethod route } ... on OpenApiCollectionValidationModel { name } } } } fragment OpenApiCollectionValidationDocumentError on OpenApiCollectionValidationDocumentError { code message path locations { __typename column line } } fragment OpenApiCollectionValidationEntityValidationError on OpenApiCollectionValidationEntityValidationError { message } fragment OpenApiCollectionValidationArchiveError on OpenApiCollectionValidationArchiveError { message } fragment OpenApiCollectionVersionValidationSuccess on OpenApiCollectionVersionValidationSuccess { state } fragment OperationInProgress on OperationInProgress { state } fragment ValidationInProgress on ValidationInProgress { state }","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 }","fc0b2ca98ba95caa6eadb2f1b725006f":"mutation ValidateClientVersion($input: ValidateClientInput!) { validateClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ClientNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... 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 }","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 +{"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 }","07c3c01d9752c92ac4dfe838c5ae069d":"mutation UploadClient($input: UploadClientInput!) { uploadClient(input: $input) { __typename clientVersion { __typename id } errors { __typename ... UnauthorizedOperation ... ClientNotFoundError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error }","0941232cf9cd2c8d7f601407e9d64dbf":"query ShowApiCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... ApiDetailPrompt_Api } } fragment ApiDetailPrompt_Api on Api { id name path workspace { __typename id name } settings { __typename schemaRegistry { __typename treatDangerousAsBreaking allowBreakingSchemaChanges } } }","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 }","17c73eb7d485a0bf03b77efc0d4b7ecd":"mutation ValidateMcpFeatureCollectionCommandMutation($input: ValidateMcpFeatureCollectionInput!) { validateMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... 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 }","1fd8d9d7682b643879c17af77b96caef":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... McpFeatureCollectionValidationError } } } } fragment SchemaChangeViolationError on SchemaChangeViolationError { message changes { __typename ... SchemaChangeLogEntry } } fragment ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 } } } }","20f39ffae2a0c07009008b6836aba650":"mutation ValidateSchemaVersion($input: ValidateSchemaInput!) { validateSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","2274beb3099335d340e29c9011e79a73":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","250a3500a6feb1b9b5ce5d47a3a47053":"mutation PublishClientVersion($input: PublishClientInput!) { publishClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ClientNotFoundError ... ClientVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... Error } fragment ClientVersionNotFoundError on ClientVersionNotFoundError { tag message clientId ... 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 }","26c1dde1391971efd46db06a45cf6746":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 ProcessingTaskApproved on ProcessingTaskApproved { state }","300e84eb9429d49f38148115ee5a4681":"mutation BeginFusionConfigurationPublish($input: BeginFusionConfigurationPublishInput!) { beginFusionConfigurationPublish(input: $input) { __typename requestId errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ApiNotFoundError ... SubgraphInvalidError ... InvalidProcessingStateTransitionError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","3097e85429305b83549a5845054a2148":"query FetchConfiguration($id: ID!, $stage: String!) { fusionConfigurationByApiId(id: $id, stage: $stage) { __typename downloadUrl tag } }","35993498c755e51178ea417965c3a164":"query ShowEnvironmentCommandQuery($workspaceId: ID!) { node(id: $workspaceId) { __typename ... EnvironmentDetailPrompt_Environment } } fragment EnvironmentDetailPrompt_Environment on Environment { id name workspace { __typename name } }","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 } }","3b9dd305052255f2532cc87618161446":"mutation PublishOpenApiCollectionCommandMutation($input: PublishOpenApiCollectionInput!) { publishOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... OpenApiCollectionNotFoundError ... OpenApiCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... Error } fragment OpenApiCollectionVersionNotFoundError on OpenApiCollectionVersionNotFoundError { tag message openApiCollectionId ... Error }","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 }","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 }","66d4f44040a316fb6a0c2d1ba29de363":"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 } } }","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 }","6ad8835f646dd18170a8670d303ed8ae":"mutation UploadFusionSubgraph($input: UploadFusionSubgraphInput!) { uploadFusionSubgraph(input: $input) { __typename fusionSubgraphVersion { __typename id } errors { __typename ... UnauthorizedOperation ... DuplicatedTagError ... ConcurrentOperationError ... InvalidFusionSourceSchemaArchiveError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment InvalidFusionSourceSchemaArchiveError on InvalidFusionSourceSchemaArchiveError { message }","6f2552b2efab37e84bf41e0fd2ef37e1":"mutation UploadSchema($input: UploadSchemaInput!) { uploadSchema(input: $input) { __typename schemaVersion { __typename id } errors { __typename ... UnauthorizedOperation ... DuplicatedTagError ... ConcurrentOperationError ... ApiNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment DuplicatedTagError on DuplicatedTagError { __typename message ... Error } fragment ConcurrentOperationError on ConcurrentOperationError { __typename message ... Error } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error }","736b80b8a3e39c5fcb5c192b42e084b4":"mutation PublishMcpFeatureCollectionCommandMutation($input: PublishMcpFeatureCollectionInput!) { publishMcpFeatureCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... McpFeatureCollectionNotFoundError ... McpFeatureCollectionVersionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment McpFeatureCollectionNotFoundError on McpFeatureCollectionNotFoundError { mcpFeatureCollectionId ... Error } fragment McpFeatureCollectionVersionNotFoundError on McpFeatureCollectionVersionNotFoundError { tag message mcpFeatureCollectionId ... 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 }","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 }","7fec40ddb8a7c93a69817de82959f38a":"mutation UploadOpenApiCollectionCommandMutation($input: UploadOpenApiCollectionInput!) { uploadOpenApiCollection(input: $input) { __typename openApiCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... OpenApiCollectionNotFoundError ... InvalidOpenApiCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","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 }","88e2921a77264a903dc0e5a2197cfe18":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 }","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 }","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 }","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 }","a50cce1fa951fcdc164e78c6f8726374":"mutation UpdateStages($input: UpdateStagesInput!) { updateStages(input: $input) { __typename api { __typename stages { __typename ... StageDetailPrompt_Stage } } errors { __typename ... ApiNotFoundError ... StageNotFoundError ... StagesHavePublishedDependenciesError ... on Error { message __typename } } } } 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 } } } } }","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 }","b111cbd352fbdf127d499cd8d4f84433":"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 } } } 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 }","b9c18dd6d50ba180b90f48a77b096216":"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 } }","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 }","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 }","c8d21a0bb621a01952ffb6224bbbfe0d":"mutation CreateWorkspaceCommandMutation($input: CreateWorkspaceInput!) { createWorkspace(input: $input) { __typename workspace { __typename id name ... WorkspaceDetailPrompt_Workspace } errors { __typename ... on UnauthorizedOperation { message } ... on ValidationError { message } ... on Error { message } } } } fragment WorkspaceDetailPrompt_Workspace on Workspace { id name personal }","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 }","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 } } } }","d38a43a7b864ae9c3d787807b5f5f460":"mutation PublishSchemaVersion($input: PublishSchemaInput!) { publishSchema(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... ApiNotFoundError ... StageNotFoundError ... SchemaNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment ApiNotFoundError on ApiNotFoundError { __typename message apiId ... Error } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment SchemaNotFoundError on SchemaNotFoundError { message apiId tag ... Error }","d9c3122efc6baad1e0bfd610a4503566":"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 } fragment Error on Error { message }","dc1c3bda5bde62cf3e0b9afcaf32824e":"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 } } } 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 }","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 }","e3e054b46fe9354a8fe15a8b0dea1624":"mutation ValidateOpenApiCollectionCommandMutation($input: ValidateOpenApiCollectionInput!) { validateOpenApiCollection(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... OpenApiCollectionNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment OpenApiCollectionNotFoundError on OpenApiCollectionNotFoundError { openApiCollectionId ... 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 }","eb5219613bc72b416f81729786573163":"mutation UploadMcpFeatureCollectionCommandMutation($input: UploadMcpFeatureCollectionInput!) { uploadMcpFeatureCollection(input: $input) { __typename mcpFeatureCollectionVersion { __typename id } errors { __typename ... UnauthorizedOperation ... McpFeatureCollectionNotFoundError ... InvalidMcpFeatureCollectionArchiveError ... DuplicatedTagError ... ConcurrentOperationError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } 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 }","ef0120355e243bcdf6b6b3353f2b8c28":"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 ... on SchemaDeployment { errors { __typename ... OperationsAreNotAllowedError ... SchemaVersionSyntaxError ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on ClientDeployment { errors { __typename ... PersistedQueryValidationError } } ... on FusionConfigurationDeployment { errors { __typename ... SchemaChangeViolationError ... InvalidGraphQLSchemaError ... PersistedQueryValidationError ... OpenApiCollectionValidationError ... McpFeatureCollectionValidationError } } ... on OpenApiCollectionDeployment { errors { __typename ... OpenApiCollectionValidationError } } ... on McpFeatureCollectionDeployment { errors { __typename ... 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 ProcessingTaskApproved on ProcessingTaskApproved { state } fragment ProcessingTaskIsReady on ProcessingTaskIsReady { ready: __typename } fragment ProcessingTaskIsQueued on ProcessingTaskIsQueued { queued: __typename queuePosition }","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 }","fc0b2ca98ba95caa6eadb2f1b725006f":"mutation ValidateClientVersion($input: ValidateClientInput!) { validateClient(input: $input) { __typename id errors { __typename ... UnauthorizedOperation ... StageNotFoundError ... ClientNotFoundError ... Error } } } fragment UnauthorizedOperation on UnauthorizedOperation { __typename message ... Error } fragment Error on Error { message } fragment StageNotFoundError on StageNotFoundError { __typename message name ... Error } fragment ClientNotFoundError on ClientNotFoundError { message clientId ... 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 From 676189e50e53a5d5eb7b6af99c6bc6f9b7a369f5 Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 24 Feb 2026 15:43:49 +0100 Subject: [PATCH 4/6] Make properties required --- .../src/CommandLine/Helpers/SourceMetadataHelper.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs index 0fc59ac9368..f21c31b9d11 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Helpers/SourceMetadataHelper.cs @@ -42,13 +42,13 @@ internal static class SourceMetadataHelper } internal sealed record GitHubSourceMetadataDto( - string Actor, - string CommitHash, - string WorkflowName, - string RunNumber, - string RunId, + [property: JsonRequired] string Actor, + [property: JsonRequired] string CommitHash, + [property: JsonRequired] string WorkflowName, + [property: JsonRequired] string RunNumber, + [property: JsonRequired] string RunId, string? JobId, - string RepositoryUrl); + [property: JsonRequired] string RepositoryUrl); [JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase)] [JsonSerializable(typeof(GitHubSourceMetadataDto))] From 03454c40fb07125707290e21a46cf838c1eac99a Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 10 Mar 2026 18:48:01 +0100 Subject: [PATCH 5/6] Use correct error methods --- .../src/CommandLine/Commands/Apis/ShowApiCommand.cs | 4 ++-- .../Commands/Clients/PublishClientCommand.cs | 7 +------ .../Commands/Clients/ShowClientCommand.cs | 4 ++-- .../Commands/Clients/ValidateClientCommand.cs | 7 +------ .../Commands/Environments/ShowEnvironmentCommand.cs | 4 ++-- .../Commands/Fusion/FusionPublishHelpers.cs | 12 ++---------- .../Commands/Fusion/FusionValidateCommand.cs | 7 +------ .../FusionConfigurationPublishValidateCommand.cs | 6 +----- .../Mcp/PublishMcpFeatureCollectionCommand.cs | 7 +------ .../Mcp/ValidateMcpFeatureCollectionCommand.cs | 7 +------ .../OpenApi/PublishOpenApiCollectionCommand.cs | 7 +------ .../OpenApi/ValidateOpenApiCollectionCommand.cs | 7 +------ .../Commands/Schemas/PublishSchemaCommand.cs | 7 +------ .../Commands/Schemas/ValidateSchemaCommand.cs | 7 +------ .../Commands/Stages/EditStagesCommand.cs | 13 ++++++++----- .../Commands/Stages/ListStagesCommand.cs | 7 ++++--- .../Commands/Workspaces/ShowWorkspaceCommand.cs | 4 ++-- .../Extensions/CommandLineBuilderExtensions.cs | 8 ++++++-- .../src/CommandLine/Helpers/ConsoleHelpers.cs | 12 +++++++++--- 19 files changed, 47 insertions(+), 90 deletions(-) diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Apis/ShowApiCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Apis/ShowApiCommand.cs index 749b4290135..7087e01408c 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Apis/ShowApiCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Apis/ShowApiCommand.cs @@ -34,8 +34,8 @@ private static async Task ExecuteAsync( CancellationToken cancellationToken) { var result = await client.ShowApiCommandQuery.ExecuteAsync(id, cancellationToken); - - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); if (data.Node is IApiDetailPrompt_Api node) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs index 149414b72b5..23cfce0baa9 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/PublishClientCommand.cs @@ -6,7 +6,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Clients; @@ -111,11 +110,7 @@ async Task PublishClient(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnClientVersionPublishingUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ShowClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ShowClientCommand.cs index df4efb677e2..f04d8131254 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ShowClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ShowClientCommand.cs @@ -37,8 +37,8 @@ private static async Task ExecuteAsync( CancellationToken cancellationToken) { var result = await client.ShowClientCommandQuery.ExecuteAsync(id, cancellationToken); - - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); if (data.Node is IClientDetailPrompt_Client node) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs index 9188aed1d39..0330b6276af 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Clients/ValidateClientCommand.cs @@ -6,7 +6,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Clients; @@ -89,11 +88,7 @@ async Task ValidateClient(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnClientVersionValidationUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Environments/ShowEnvironmentCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Environments/ShowEnvironmentCommand.cs index d5aba581a14..d01e93bee0d 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Environments/ShowEnvironmentCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Environments/ShowEnvironmentCommand.cs @@ -34,8 +34,8 @@ private static async Task ExecuteAsync( CancellationToken cancellationToken) { var result = await client.ShowEnvironmentCommandQuery.ExecuteAsync(id, cancellationToken); - - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); if (data.Node is IEnvironmentDetailPrompt_Environment node) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs index be1dac4baab..883e81e3cf4 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionPublishHelpers.cs @@ -73,11 +73,7 @@ public static async Task RequestDeploymentSlotAsync( void OnNext(IOperationResult x) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("Something went wrong while monitoring the publish task."); - } + console.EnsureNoErrors(x); switch (x.Data?.OnFusionConfigurationPublishingTaskChanged) { @@ -251,11 +247,7 @@ public static async Task UploadFusionArchiveAsync( await foreach (var x in subscription.ToAsyncEnumerable() .WithCancellation(cancellationToken)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnFusionConfigurationPublishingTaskChanged) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionValidateCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionValidateCommand.cs index 520887e6827..c0e08c080ca 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionValidateCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/FusionValidateCommand.cs @@ -12,7 +12,6 @@ using ChilliCream.Nitro.CommandLine.Options; using HotChocolate.Fusion.Packaging; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Fusion; @@ -203,11 +202,7 @@ async Task ValidateSchemaAsync(StatusContext? ctx, Stream schemaStream) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnSchemaVersionValidationUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishValidateCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishValidateCommand.cs index 7bcec8289f5..8d055f9f5e2 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishValidateCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Fusion/PublishCommand/FusionConfigurationPublishValidateCommand.cs @@ -104,11 +104,7 @@ async Task ValidateAsync(StatusContext? ctx) void OnNext(IOperationResult @event) { - if (@event.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(@event); switch (@event.Data?.OnFusionConfigurationPublishingTaskChanged) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs index e6fd8e32d58..50a8dba6189 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/PublishMcpFeatureCollectionCommand.cs @@ -7,7 +7,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Mcp; @@ -110,11 +109,7 @@ async Task PublishMcpFeatureCollection(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnMcpFeatureCollectionVersionPublishingUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs index ba77d4b0753..25d67dabe75 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Mcp/ValidateMcpFeatureCollectionCommand.cs @@ -7,7 +7,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Mcp; @@ -113,11 +112,7 @@ async Task ValidateMcpFeatureCollection(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnMcpFeatureCollectionVersionValidationUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs index 339899d082b..2b7d9dcefa5 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/PublishOpenApiCollectionCommand.cs @@ -7,7 +7,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.OpenApi; @@ -110,11 +109,7 @@ async Task PublishOpenApiCollection(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnOpenApiCollectionVersionPublishingUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs index 448ac54b334..43b27ecdc18 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/OpenApi/ValidateOpenApiCollectionCommand.cs @@ -7,7 +7,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.OpenApi; @@ -102,11 +101,7 @@ async Task ValidateOpenApiCollection(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnOpenApiCollectionVersionValidationUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs index 0c66ba4ac94..bb73377e361 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/PublishSchemaCommand.cs @@ -6,7 +6,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; using Command = System.CommandLine.Command; namespace ChilliCream.Nitro.CommandLine.Commands.Schemas; @@ -112,11 +111,7 @@ async Task PublishSchema(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnSchemaVersionPublishingUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs index 3affd6d0469..c9b4383c765 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Schemas/ValidateSchemaCommand.cs @@ -6,7 +6,6 @@ using ChilliCream.Nitro.CommandLine.Helpers; using ChilliCream.Nitro.CommandLine.Options; using StrawberryShake; -using static ChilliCream.Nitro.CommandLine.ThrowHelper; namespace ChilliCream.Nitro.CommandLine.Commands.Schemas; @@ -89,11 +88,7 @@ async Task ValidateSchema(StatusContext? ctx) await foreach (var x in subscription.ToAsyncEnumerable().WithCancellation(ct)) { - if (x.Errors is { Count: > 0 } errors) - { - console.PrintErrorsAndExit(errors); - throw Exit("No request ID returned"); - } + console.EnsureNoErrors(x); switch (x.Data?.OnSchemaVersionValidationUpdate) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/EditStagesCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/EditStagesCommand.cs index 286a8e4c045..ec2750fed48 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/EditStagesCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/EditStagesCommand.cs @@ -97,7 +97,7 @@ private static async Task EditStagesInteractivlyAsync( string apiId, CancellationToken cancellationToken) { - var updatedStages = await client.FetchStagesAsync(apiId, cancellationToken); + var updatedStages = await client.FetchStagesAsync(console, apiId, cancellationToken); while (!cancellationToken.IsCancellationRequested) { @@ -155,11 +155,13 @@ file static class ClientExtensions { public static async Task> FetchStagesAsync( this IApiClient client, + IAnsiConsole console, string apiId, CancellationToken cancellationToken) { var result = await client.ListStagesQuery.ExecuteAsync(apiId, cancellationToken); - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); var stages = (data.Node as IListStagesQuery_Node_Api)?.Stages; if (stages is null) { @@ -191,10 +193,11 @@ public static async Task UpdateStagesAsync( var updateResult = await client.UpdateStages.ExecuteAsync(updateInput, cancellationToken); - updateResult.EnsureData(); - console.PrintErrorsAndExit(updateResult.Data?.UpdateStages.Errors); + console.EnsureNoErrors(updateResult); + var data = console.EnsureData(updateResult); + console.PrintErrorsAndExit(data.UpdateStages.Errors); - var items = updateResult.Data?.UpdateStages.Api?.Stages + var items = data.UpdateStages.Api?.Stages .Select(x => StageDetailPrompt.From(x).ToObject()) .ToArray() ?? []; diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/ListStagesCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/ListStagesCommand.cs index c0b2e78e358..5febff13213 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/ListStagesCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Stages/ListStagesCommand.cs @@ -49,7 +49,8 @@ private static async Task RenderInteractiveAsync( var apiId = await context.GetOrSelectApiId(apiMessage); var result = await client.ListStagesQuery.ExecuteAsync(apiId, ct); - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); var stages = (data.Node as IListStagesQuery_Node_Api)?.Stages; if (stages is null) { @@ -91,8 +92,8 @@ private static async Task RenderNonInteractiveAsync( var result = await client.ListStagesQuery.ExecuteAsync(apiId, ct); console.EnsureNoErrors(result); - - var items = (result.Data?.Node as IListStagesQuery_Node_Api)?.Stages + var data = console.EnsureData(result); + var items = (data.Node as IListStagesQuery_Node_Api)?.Stages .Select(x => StageDetailPrompt.From(x).ToObject()) .ToArray() ?? []; diff --git a/src/Nitro/CommandLine/src/CommandLine/Commands/Workspaces/ShowWorkspaceCommand.cs b/src/Nitro/CommandLine/src/CommandLine/Commands/Workspaces/ShowWorkspaceCommand.cs index ea221db519e..f0e2f7c48e5 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Commands/Workspaces/ShowWorkspaceCommand.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Commands/Workspaces/ShowWorkspaceCommand.cs @@ -35,8 +35,8 @@ private static async Task ExecuteAsync( CancellationToken cancellationToken) { var result = await client.ShowWorkspaceCommandQuery.ExecuteAsync(id, cancellationToken); - - var data = result.EnsureData(); + console.EnsureNoErrors(result); + var data = console.EnsureData(result); if (data.Node is IWorkspaceDetailPrompt_Workspace node) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Extensions/CommandLineBuilderExtensions.cs b/src/Nitro/CommandLine/src/CommandLine/Extensions/CommandLineBuilderExtensions.cs index 27aacc8311d..2bd1c91a9c2 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Extensions/CommandLineBuilderExtensions.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Extensions/CommandLineBuilderExtensions.cs @@ -68,11 +68,15 @@ private static async Task ExceptionMiddleware( { await next(context); } - catch (ExitException exception) when (exception is { Message: var message }) + catch (ExitException exception) { context.ExitCode = ExitCodes.Error; - context.BindingContext.GetRequiredService().MarkupLine(message); + var message = exception.Message; + if (!string.IsNullOrEmpty(message)) + { + context.BindingContext.GetRequiredService().MarkupLine(message); + } } catch (Exception ex) when (ex is OperationCanceledException or TaskCanceledException) { diff --git a/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs b/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs index 045c576b32f..6b1f311aaac 100644 --- a/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs +++ b/src/Nitro/CommandLine/src/CommandLine/Helpers/ConsoleHelpers.cs @@ -13,7 +13,13 @@ public static void EnsureNoErrors( if (result.Errors is { Count: > 0 }) { var firstError = result.Errors[0]; - console.WriteLine($"{firstError.Message} ({firstError.Code})"); + var errorMessage = firstError.Message; + if (!string.IsNullOrEmpty(firstError.Code)) + { + errorMessage += $" ({firstError.Code})"; + } + + console.WriteLine(errorMessage); throw new ExitException(); } @@ -386,11 +392,11 @@ private static void PrintMutationError(this IAnsiConsole ansiConsole, object err break; case IError err: - ansiConsole.WriteLine(err.Message); + ansiConsole.WriteLine("Unexpected mutation error: " + err.Message); break; default: - ansiConsole.WriteLine("Unexpected Error"); + ansiConsole.WriteLine("Unexpected mutation error"); break; } } From d0f3c6057a086d0e1c374b67080f1958b00f3bfd Mon Sep 17 00:00:00 2001 From: tobias-tengler <45513122+tobias-tengler@users.noreply.github.com> Date: Tue, 10 Mar 2026 18:51:15 +0100 Subject: [PATCH 6/6] Update schema --- .../src/CommandLine/schema.graphql | 20 +++++++------------ 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/Nitro/CommandLine/src/CommandLine/schema.graphql b/src/Nitro/CommandLine/src/CommandLine/schema.graphql index 1fc84c85737..e58f6008971 100644 --- a/src/Nitro/CommandLine/src/CommandLine/schema.graphql +++ b/src/Nitro/CommandLine/src/CommandLine/schema.graphql @@ -299,6 +299,7 @@ type Api implements Node { 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!]! + 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!]! @@ -3121,7 +3122,7 @@ type Query { fusionConfigurationByApiId(id: ID! stage: String!): FusionConfiguration me: Viewer "Fetches an object given its ID." - node("ID of the object." id: ID!): Node @lookup @shareable + 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 @@ -4118,6 +4119,7 @@ input ApiCreateChangeInput { name: String! path: [String!]! referenceId: String! + referenceName: String workspaceId: ID! } @@ -4196,6 +4198,7 @@ input ApiUpdateChangeInput { name: String! path: [String!]! referenceId: String! + referenceName: String version: Version! workspaceId: ID! } @@ -4318,7 +4321,7 @@ input DeleteOpenApiCollectionByIdInput { input EnvironmentCreateChangeInput { name: String! referenceId: String! - variables: [EnvironmentVariableInput!]! = [] + variables: [EnvironmentVariableInput!]! = [ ] workspaceId: ID! } @@ -4333,7 +4336,7 @@ input EnvironmentUpdateChangeInput { id: ID! name: String! referenceId: String! - variables: [EnvironmentVariableInput!]! = [] + variables: [EnvironmentVariableInput!]! = [ ] version: Version! workspaceId: ID! } @@ -4555,7 +4558,7 @@ input StageConditionUpdateInput { } input StageUpdateInput { - conditions: [StageConditionUpdateInput!]! = [] + conditions: [StageConditionUpdateInput!]! = [ ] displayName: String! name: String! } @@ -4942,18 +4945,9 @@ enum WorkspaceUserRole { "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 @lookup directive is used within a source schema to specify output fields -that can be used by the distributed GraphQL executor to resolve an entity by -a stable key. -""" -directive @lookup on FIELD_DEFINITION - "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 -directive @shareable on OBJECT | FIELD_DEFINITION - "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